欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

从MySQL全库备份中恢复某个库和某张表的方法

程序员文章站 2023-12-02 20:33:22
在mysqldump官方工具中,如何只恢复某个库呢? 全库备份 [root@he1 ~]# mysqldump -uroot -p --single-trans...

在mysqldump官方工具中,如何只恢复某个库呢?

全库备份

[root@he1 ~]# mysqldump -uroot -p --single-transaction -a --master-data=2 >dump.sql

只还原erp库的内容

[root@he1 ~]# mysql -uroot -pmanager erp --one-database <dump.sql

可以看出这里主要用到的参数是--one-database简写-o的参数,极大方便了我们的恢复灵活性。

那么如何从全库备份中抽取某张表呢,全库恢复,再恢复某张表小库还可以,大库就很麻烦了,那我们可以利用正则表达式来进行快速抽取,具体实现方法如下:

从全库备份中抽取出t表的表结构

[root@he1 ~]# sed -e'/./{h;$!d;}' -e 'x;/create table `t`/!d;q' dump.sql

drop table if exists`t`;

/*!40101 set@saved_cs_client   =@@character_set_client */;

/*!40101 setcharacter_set_client = utf8 */;

create table `t` (

 `id` int(10) not null auto_increment,

 `age` tinyint(4) not null default '0',

 `name` varchar(30) not null default '',

 primary key (`id`)

) engine=innodbauto_increment=4 default charset=utf8;

/*!40101 setcharacter_set_client = @saved_cs_client */;

从全库备份中抽取出t表的内容

[root@he1 ~]# grep'insert into `t`' dump.sql

insert into `t`values (0,0,''),(1,0,'aa'),(2,0,'bbb'),(3,25,'helei');

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。