It's a test environment, I needed some data to test an Update query, but accidentally updated a column in all rows to have wrong data. Must I use a backup to restore the data back to the previous instance, or is there some secret with transaction log that I can take advantage of?

Thanks in advance.

link|improve this question

78% accept rate
Should be using Transactions as in BEGIN TRAN T1...COMMIT TRAN T1 OR Rollback..etc. – JonH Nov 22 '10 at 20:08
feedback

3 Answers

up vote 4 down vote accepted

There is a non-secret transaction log called transaction log that you can recover from to a point in time. Here's how... That annoying little file with the ldf extension is the transaction log, as opposed to the .mdf file that is your normal db data.

Unless you have truncated the transaction log (ldf) or otherwise mucked with it, you should be able to do exactly the kind of restore (undo) that you're looking for.

link|improve this answer
feedback

Not unless you wrapped your sql in a transaction block - begin transaction, rollback, commit. That one of the dangerous things about sql server. With Oracle you have to physically commit each transaction which is much safer imho.

link|improve this answer
that's too late sir. – Haoest Nov 22 '10 at 20:04
You might find this usefull in the future. It turns off auto commit. Note that you will have to manage your own transactions dataprix.com/en/blogs/il-masacratore/… – hoakey Nov 22 '10 at 20:16
feedback

man... im sorry but it makes me laugh :D the way you phrase the question...

As far as i know, you cant undo updated data :(

hope that i'm wrong

Good luck.

link|improve this answer
2  
-1 Yes, it was a cute question and this is not a cute answer. It is incorrect and should have been a comment at best. Welcome to SO Rami but plz read the FAQ. Thx. – Paul Sasik Nov 22 '10 at 19:58
ops, I'm Sorry. – Rami.Shareef Nov 22 '10 at 20:00
strictly for educational purposes, what is so laughable about the question? – Haoest Nov 22 '10 at 20:09
feedback

Your Answer

 
or
required, but never shown

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