如何从 SQL Server 2005 表中恢复已删除的行?

发布于 2024-08-30 08:02:49 字数 37 浏览 7 评论 0原文

如何从 SQL Server 2005 表中恢复已删除的行?

How to recover a deleted row from SQL Server 2005 table?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

故事和酒 2024-09-06 08:02:49

如果您的数据库备份已删除数据:

  • 在单独的数据库中恢复备份并从那里恢复已删除的数据

如果没有备份但您的数据库处于完全恢复模式:

您需要第三方工具的帮助,因为事务日志没有详细记录。这是因为它的目的不是用于这种恢复。但是,如果您可以阅读它,其中有很多有用的详细信息,可用于恢复意外删除的数据。

If you have database backups that have deleted data:

  • Restore backup in separate database and recover deleted data from there

If there are no backups but your database is in full recovery mode:

You’ll need help from third party tools because transaction log is not well documented. This is because it’s purpose is not to be used for this kind of recovery. However, if you can read it there are a lot of useful details there that can be used to recover accidentally deleted data.

花落人断肠 2024-09-06 08:02:49

回滚事务(如果您启动了事务)。

恢复备份(如果有的话)。

[编辑] 如果您有事务日志,您应该能够将数据库的备份恢复到该行被删除之前的大致位置(假设您知道那是什么时候)。

Rollback the transaction (if you started one).

Restore a backup (if you have one).

[edit] If you have transaction logs, you should be able to restore the backup of the database to the point roughly just before the row was deleted (assuming you know when that was).

箜明 2024-09-06 08:02:49

有两种方法可以恢复特定的表:

  1. 第一种:恢复完全备份,在使用 t-log 备份的 no_truncate 选项恢复后不进行恢复
  2. 第二种方式:使用触发器我们可以使用审计表来恢复已删除的表。

There are two ways we can recovery specific table:

  1. The first one: restore fullback up with no recovery after restore with no_truncate option for t-log backup
  2. The second way: using triggers we can recovery deleted tables with audit table.
静赏你的温柔 2024-09-06 08:02:49

ApexSQL Log 工具可以作为已删除行的解决方案。如果数据库事务日志(在线、备份)中存在 DELETE 操作(数据库未使用简单恢复模型),该工具可以为该操作创建撤消 T-SQL 脚本。

免责声明:我在 ApexSQL 担任产品支持工程师

The ApexSQL Log tool can be the solution for deleted rows. In case the DELETE operation exists (the database was not using the Simple recovery model) in database transaction logs (online, backups), the tool can create an undo T-SQL script for the operation.

Disclaimer: I work as a Product Support Engineer at ApexSQL

过期以后 2024-09-06 08:02:49

如果您需要“恢复到某个时间点”选项,请不要忘记为数据库设置完整恢复模式!

Don't forget to set full recovery model for a database if you need the "restore to a point in time" option!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文