Would it be possible rollback transactions using Transactionlog file for a particular record?
I am using SQL Server 2005.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Natively, no. I believe there are some pricey third party tools to do this, though.
Alternatively, you can restore your DB from a backup, and then
RESTORE LOGSto a point in time with theSTOPAT = '6/30/2009 2:30PM'argument.There are Apex and SQL Log Rescue available. If your logs aren’t in
FULLrecovery mode, though, you may be up a creek if you can’t restore.