首先更新数据库属性
alter database dd_zcgldb set recovery full
go
然后在目前数据库的基础上进行全库备份和日志备份
BACKUP DATABASE BJKJ_ZCGLDB TO disk='F:\BJKJ_ZCGLDB.dat'
BACKUP LOG dd_ZCGLDB to disk='F:\dd_ZCGLDB.log'
go
再用全库备份还原一个新数据库
restore database dd1_ZCGLDB from disk='F:\dd_ZCGLDB.dat' with norecovery
在新数据库上还原日志备份到时间点
restore log dd1_ZCGLDB from disk='F:\dd_ZCGLDB.log'
with stopat='2007/05/19 00:00:00.000'
GO
请问我这样操作有问题吗?为什么还原来还原去数据库还是没有变化?里面的数据始终相同?
[此贴子已经被作者于2007-8-14 13:09:46编辑过]