I'm looking for a way to check SQL Server availability like this MySQL solution, unless there is a better method.
My plan is to check if the SQL Server instance is up/down, and if it is down then display a message to the user, all via a try/catch.
|
|
I'm looking for a way to check SQL Server availability like this MySQL solution, unless there is a better method. My plan is to check if the SQL Server instance is up/down, and if it is down then display a message to the user, all via a try/catch.
|
||||
|
|
|
just try to open a connection to it. if it fails it's not available. it's your best option. |
||
|
|
|
|
I would add an exception to the top of your try/catch/finally to look for the sql connection status. I forget the object and property, but I'm sure you can find that out. The typical SQL way of querying (that I'm used to):
|
||
|
|
|
|
Here's a programmatic solution using SMO (Server Management Objects)...
|
||||
|
|
|
I would create a new connection string with a very small connect timeout
|
|||
|
|