vote up 0 vote down star

I am looking at a large-ish SQL Server 2005 database, that has entered into Recovery mode, and I am wondering if there is any way to estimate how long it's going to be until the database has recovered?

flag

2 Answers

vote up 0 vote down check

Any more than a few seconds means an outage during a multi-million update row that needs undone. You'll have to follow progress in the SQL error log.

Slightly cheeky, but you could read "Understanding Recovery Performance in SQL Server" while you wait...

link|flag
vote up 0 vote down

If you look at the server logs, it will add a log entry after every 1% of progress or so. From that you can guestimate the time left. It's usually what I end up having to do.

link|flag
Which server logs? – Philip Kelley Sep 15 at 19:17
The easiest place to access them is under Management\SQL Server Logs in the object explorer in SSMS – BBlake Sep 15 at 20:11

Your Answer

Get an OpenID
or

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