How to undo a delete operation in SQL Server 2005?

后端 未结 6 1585
轮回少年
轮回少年 2020-12-11 10:13

Our Test DB is suddenly missing rows. We want them back.

Is there a way to sift through everything that has happened to the database today? Each SQL statement? I pre

6条回答
  •  庸人自扰
    2020-12-11 11:04

    You can undo a transaction by using Rollback command in SQL Server. But, you need to know the transaction can be rolledback if the transaction were performed within Begin transaction.

提交回复
热议问题