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

差异备份的恢复问题_MySQL

程序员文章站 2022-04-29 19:37:23
...
A : 情况是这样的

create database test

create table t(a int)

insert into test..t select 1

然后进行一次完整备份

backup database test to disk='c: est.bak'

insert into test..t select 2

再进行一次完整备份

backup database test to disk='c: est.bak'

insert into test..t select 3

此时用 restore database test from disk='c: est.bak' with file=1

结果为 1, 此为正确

用 restore database test from disk='c: est.bak' with file=2

结果为 1,

2 此也为正确

当表t中为1,2,3的时候,在插入一条纪录结果为1,2,3,4然后进行一次差异备份

backup database test to disk='c: est.bak' with differential

然后往执行delete from t 删除所有纪录

我现在想恢复最后的那次差异备份(结果为1,2,3,4),用语句改如何实现呢?

---------------------------------------------------------------

下面的是详细的过程,在我的电脑上测试成功:

--清除环境,防止现有的数据影响测试结果

exec master..xp_cmdshell 'del c: ext.bak'

if exists(select * from master..sysdatabases where name='test')

drop database test

go

相关标签: