vote up 1 vote down star
1

I have full weekly backups, daily differential backups and hourly transaction log backups.

To restore the database, I restore the full backup, then the last dif backup then all the transaction log backups specifying NORECOVERY on all the restores except the last one.

My question is. If I accidently restore my last transaction log with the NORECOVERY flag set, is there a command I can run to "RECOVER" the database at this point?

I'm using SQL Server 2005.

flag

3 Answers

vote up 1 vote down check

Try this (from SQL2000 help): RESTORE DATABASE dbname WITH RECOVERY

link|flag
I see now that you have found the solution. I posted the answer without refresh the question. Sorry. – lg Jul 14 at 9:50
vote up 2 vote down

Ok, so the answer is fairly simple. You can simply run the command.

RESTORE DATABASE [MyDatabase] WITH RECOVERY

It didn't even occur to me that you can run the RESTORE DATABASE command without specifying a backup to restore from.

link|flag
vote up 0 vote down

just see on this blog may be your problem will solve or ask pinal sir he may be give you answer http://blog.sqlauthority.com/

link|flag

Your Answer

Get an OpenID
or

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