In my Windows Forms application (on startup) I use the ping command to check if both the Internet connection and my SQL Server are alive.
Is there any "better" way-command I should use for accomplishing the above task in the .NET framework 2.0?
|
1
|
In my Windows Forms application (on startup) I use the ping command to check if both the Internet connection and my SQL Server are alive. Is there any "better" way-command I should use for accomplishing the above task in the .NET framework 2.0?
|
|||
|
|
|
|
Just make a small, simple request to your SQL server to see if the connection works. Other than that, why not just a sensibly-handled exception to kick in if your connection times out or otherwise fails? |
||||||||
|
|
|
Be very careful to keep this as start-up logic. I have see things like this degenerate to heart beat logic which has a lot of other fun issues. One of which is, if you app will have many running instances. If your app is used in a large environment and there might be thousands of instances running, then heartbeat logic can add to network and server loads. Or sometimes the heartbeat interval is configurable and someone sets it to zero or some other crazy value. One other point, I have seen this combined where the question ask of the DB server is what time is it on the server. i.e. select GetDate() This does two things, first you know the server and network are working if you get an answer. Second if you have some time critical operations you can measure the clock skew between the client machine and the DB server. Sometimes this is important to know. |
||
|
|
|
|
To check network and MS-SQL Server without executing a command:
Modified from code I use to get SQL Server version. Update: mattcodes raises a good point about connection pooling, according to MSDN
If that's not enough, set |
|||
|
|
Here is a sample code:
Source: my own blog For SQL Server, it is better to 'try a connection'. |
||||||
|
|
|
To test the internet connection. The System.Net has allot of useful functions. |
||
|
|
|
|
Ping can only be used to verify that packets can travel to the destination but is not suitable to check if the actual server is operational. If your server is configured to provide SNMP, it would be a better choice to acquire SNMP information to know if your server is operational. However, programming SNMP is not a simple task. Go for it if you really need the benefits. |
||
|
|