mysql还原某个数据库,mysql还原到其他数据库

I back up my production database with the following command:

mysqldump -u root --opt --skip-extended-insert --databases my_production_db

The resulting dump file has the following lines near the top:

CREATE DATABASE /*!32312 IF NOT EXISTS*/ `my_production_db` /*!40100 DEFAULT CHARACTER SET latin1 */;

USE `my_production_db `;

In order to restore the database to a different destination ie. my_debvelopment_db I have to open the dump file and edit the bits where the database is named.

Then I run:

mysql -u root -p < mydumpfile

I have not figured out another way to do it.

As the database gets bigger this becomes impractical.

Am I missing something? Cant I somehow specify where I want to restore the database? Would I need a different backup command?

解决方案

If you drop the option --databases but still specify the database name, you will NOT get the create database statements. ie:

mysqldump -u root --opt --skip-extended-insert my_production_db

On your dev machine simply create any database you wish to restore to.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值