Need to roll back a delete operation from the transaction logs in sql server 2008 but unsure how to do this.

Can anyone give me a point in the right direction for the correct syntax for this operation??

I'd be very grateful,

Thanks

link|improve this question

what version of Sql Server? – sv88erik Dec 22 '10 at 9:17
Apologies, sql server 2008 – 109221793 Dec 22 '10 at 9:23
feedback

2 Answers

up vote 1 down vote accepted

There is no way to do this using MS provided tools in SQL. Apex has a log utility http://www.apexsql.com/sql_tools_log.asp will likely sort your issue. If you can't get that then restoring is your best bet.

link|improve this answer
feedback

the only supported way is to restore from backup.
if you want to go crazy you can do something like this

but i'd suggest you take a backup before attempting anything like that.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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