0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

mysqlのDBを複製する

Posted at

hoge から hoge_bkを作成(複製)するには

mysqldump -u root -p hoge > hoge.dump.sql
mysqladmin -u root -p create hoge_bk
mysql -u root -p hoge_bk < hoge.dump.sql

ユーザやdb名は適宜変更してください
複製先のdbに権限がないと作成やリストアできないなど発生するかと思います

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?