vote up 0 vote down star

I have an app that runs on system startup that needs to talk to the local SQL Server 2005 installation. I'm using the ServiceController class to wait for it to enter the "Running" state, and most times this works fine. However, sometimes on a cold boot, my first query fails, saying that it couldn't log on the current user.

It sounds like a race condition, but I figured my WaitForStatus call was supposed to resolve it.

Is there a better way to make sure it's really-truly running? Should I just throw in an extra sleep and assume it's long enough?

flag

2 Answers

vote up 3 vote down

You could always use the System.Data.Sql.SqlDataSourceEnumerator and check for the local instance.

On the plus, you can also discover version information with the enumerator.

link|flag
I will probably try this first. Thanks! – Coderer Mar 5 at 18:04
vote up 5 vote down

You could just catch the exception and retry until it works...

link|flag
The best way to tell it's 'really-truly running' is to run a query so this has to be the best option. – Dave Webb Mar 5 at 17:09

Your Answer

Get an OpenID
or

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