Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I accidentaly ran a DELETE command against a table with a wrong WHERE clause.

I am using SQL Server 2005.

Is there a way, or any utility software that could help me recover the lost data?

share|improve this question
Unless you have a backup - which you can restore - think you might be in trouble!! – InSane Aug 22 '10 at 8:32
Thank you. I needed that. I'm not alone. (Hope someone comes up with a way you can recover, though.) – slashmais Aug 22 '10 at 8:33
I think there are definitely 3rd party tools around - apex-sql-log.apex-sql-llc.qarchive.org or Red Gate's SQL Log Rescue red-gate.com/products/SQL_Log_Rescue might work - but these are all commercial paid products – InSane Aug 22 '10 at 8:40

3 Answers

You have Full data + Transaction log backups, right? You can restore to another Database from backups and then sync the deleted rows back. Lots of work though...

(Have you looked at Redgate's SQL Log Rescue? Update: it's SQL Server 2000 only)

There is Log Explorer

share|improve this answer

I think thats impossible, sorry.

Thats why whenever running a delete or update you should always use BEGIN TRANSACTION, then COMMIT if successful or ROLLBACK if not.

share|improve this answer
I Lost over 200 record by simple fault :( – Rev Apr 30 '12 at 10:27
@Rev for me. It worked. – harsh Mar 15 at 17:38

What is gone is gone. The only protection I know of is regular backup.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.