im trying to connect to a sql server database i get this error

Database 'XXX' is in transition. Try the statement later.

i cancelled a long query earlier today but for some reason i can't get the database to get back up. Is there anything i can do?

link|improve this question

50% accept rate
2  
With a question such as this you really should be specific about what SQL server and its version. I'm guessing you mean one of the Microsoft SQL servers but we shouldn't have to guess. – John Gardeniers Jan 8 '10 at 6:36
feedback

2 Answers

up vote 7 down vote accepted

This can happen sometimes if you try to take a DB offline or perform certain other operations and they fail. Sometimes the lock can be cleared if you close the SSMS instance that attempted the operation, then reopen it. Close and reopen any SSMS instances attached to the server.

It can also occur if you try to take the DB offline while a long query is running. Check the activity monitor and try killing any long-running queries, if applicable and safe.

If neither of the above works, close all SSMS instances, then restart SQL through the SQL Server Configuration Manager. Usually that will cure it, although the DB may be in recovery mode at first.

link|improve this answer
feedback

Strangely enough, I fixed this problem by simply closing SSMS and re-opening.

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.