有什么方法可以在没有备份文件的情况下将数据库恢复到最后一个稳定阶段?
我有一个软件,按照指示我命令操作员定期备份软件数据(SQLServer2000本地)。
但操作员没有这样做,出于好奇,她通过第一次备份(7 个月前)恢复了数据库。现在我们已经丢失了所有软件数据(数据库)。如此灾难。
有关更多信息,软件使用此查询进行备份:
BackUP DATABASE databaseName to DISK=...
并使用此查询进行恢复:
RESTORE DATABASE databaseName FROM DISK=...
我很欣赏任何想法
I have a software and at instruction I ordered Operators to backup software data(SQLServer2000 locally) regularly .
But the operator didn't and by curious she restored database by the First backup (7 months earlier) . Now we have lost all software data ( database) . such a disaster .
For more information software use this query for backing up :
BackUP DATABASE databaseName to DISK=...
and this one for restoring :
RESTORE DATABASE databaseName FROM DISK=...
I appreciate any idea
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要一个完整的备份文件来回滚您的更改。如果您没有它,则无法恢复。
没有人有更新的备份吗? (本地放置在服务器上的某个位置)
是否还有其他方法来检索数据(可能是来自本地计算机上的存储库的开发代码)?
如果没有,那么您现在就会了解定期备份有多么重要。对不起。
编辑:检查此恢复信息以获取恢复您的任何数据的可能性。
You need a complete backup file to rollback your changes. If you do not have it you can not revert back.
Does noone have a more recent backup? (localy placed somewhere on a server)
Is there any other wy to retrieve the data (maybe developement code from repositories on local computers)?
If not then you learn how important regulary backups are - NOW. Sorry.
EDIT: Check this recovering info for the possibility of recovering any of your data.