可能有不少朋友遇到過這樣的問題
update或delete語句忘帶了where子句
這種情況的數據恢復只能利用事務日志的備份來進行
或不能備份日志(truncate log on checkpoint選項為
只能恢復到最近一次的備份的數據了
以下簡單說明恢復數據方法
進行一次日志備份(如果為了不讓日志文件變大而置trunc
backup log dbName to disk=
復
restore database dbName from disk=
restore log dbName from disk=
with stopat=
以上這些操作都可以在SQL SERVER企業管理器裡完成
當然
用上述方法來恢復數據的
From:http://tw.wingwit.com/Article/Fault/201311/10403.html