vote up 0 vote down star

when an MSSQL Express DB is 'in recovery', you are unable to connect using SQL Authentication.

Is there a simple way of determining the stat of the DB prior to connecting to it? (Using .Net)

Thanks

flag

2 Answers

vote up 1 vote down

That's kind of a trick question. Instead of connecting to that particular database, you still need to connect to the server itself, but specify a different database. When connecting, your default database might be the one that's in recovery. In that case, you'll need to specify a different database upon connecting, and THEN issue a query to check the database's extended properties.

Unfortunately, this means your SQL login will need permissions to that other database you'll be connecting to, AND it'll need permissions to query the database's extended properties.

link|flag
vote up 1 vote down
SELECT DATABASEPROPERTYEX ('master', 'STATUS') AS 'Status';

Replace 'master' with your database name

link|flag

Your Answer

Get an OpenID
or

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