vote up 5 vote down star
2

Every now and then in a high volume .NET application, you might see this exception when you try to execute a query:

System.Data.SqlClient.SqlException: A transport-level error has occurred when sending the request to the server.

According to my research, this is something that "just happens" and not much can be done to prevent it. It does not happen as a result of a bad query, and generally cannot be duplicated. It just crops up maybe once every few days in a busy OLTP system when the TCP connection to the database goes bad for some reason.

I am forced to detect this error by parsing the exception message, and then retrying the entire operation from scratch, to include using a new connection. None of that is pretty.

Anybody have any alternate solutions?

flag

43% accept rate

10 Answers

vote up -1 vote down

Do you have statistics for the load on your database server when these errors are thrown? You might have some database issues that are causing connections to fail.

link|flag
vote up 0 vote down

You should also check hardware connectivity to the database.

Perhaps this thread will be helpful: http://channel9.msdn.com/forums/TechOff/234271-Conenction-forcibly-closed-SQL-2005/

link|flag
vote up 0 vote down

This should not happen, even under high transactional volume. We run an average of 25,000 transactions per second on SQL Server 2005 Standard, and we don't get this error. (Unless the cluster fails over, which is every 12+ months, not every few days.)

Without any more info, it sounds like there is a networking problem between your database server and your application servers. Can you post more info?

link|flag
This really should be a comment. – Ian Boyd Aug 28 at 14:06
There was no such thing as comments when this question was asked. People used to do @replies to one another as answers. – Portman Aug 28 at 17:58
vote up 0 vote down

@Portman, I suspect it is due to the crappy onboard Dell NIC I'm forced to use since both of my PCIe slots are taken up with HBA cards connected to my DAS. I'm upgrading to a bigger machine so I can fit the (much) better Intel NIC.

How are you clustering with Standard Edition? That's an Enterprise Edition feature.

link|flag
vote up -1 vote down

@Eric: clustering, log shipping, and mirroring are all available in Standard.

http://www.microsoft.com/sql/prodinfo/features/compare-features.mspx

link|flag
Uhh... why the downmod? – Portman Oct 9 '08 at 6:55
vote up 0 vote down

I'm using reliability layer around my DB commands (abstracted away in the repository interfaece). Basically that's just code that intercepts any expected exception (DbException and also InvalidOperationException, that happens to get thrown on connectivity issues), logs it, captures statistics and retries everything again.

With that reliability layer present, the service has been able to survive stress-testing gracefully (constant dead-locks, network failures etc). Production is far less hostile than that.

PS: There is more on that here (along with a simple way to define reliability with the interception DSL)

link|flag
vote up 2 vote down

To answer your original question:

A more elegant way to detect this particular error, without parsing the error message, is to inspect the Number property of the SqlException.

(This actually returns the error number from the first SqlError in the Errors collection, but in your case the transport error should be the only one in the collection.)

link|flag
+1 Not an answer, but is useful idea. – Ian Boyd Aug 28 at 14:08
vote up 0 vote down

Hi Eric,

I had the same problem. I asked my network geek friends, and all said what people have replied here: Its the connection between the computer and the database server. In my case it was my Internet Service Provider, or there router that was the problem. After a Router update, the problem went away. But do you have any other drop-outs of internet connection from you're computer or server? I had...

link|flag
vote up 1 vote down

I posted an answer on another question on another topic that might have some use here. That answer involved SMB connections, not SQL. However it was identical in that it involved a low-level transport error.

What we found was that in a heavy load situation, it was fairly easy for the remote server to time out connections at the TCP layer simply because the server was busy. Part of the reason was the defaults for how many times TCP will retransmit data on Windows weren't appropriate for our situation.

Take a look at the registry settings for tuning TCP/IP on Windows. In particular you want to look at TcpMaxDataRetransmissions and maybe TcpMaxConnectRetransmissions. These default to 5 and 2 respectively, try upping them a little bit on the client system and duplicate the load situation.

Don't go crazy! TCP doubles the timeout with each successive retransmission, so the timeout behavior for bad connections can go exponential on you if you increase these too much. As I recall upping TcpMaxDataRetransmissions to 6 or 7 solved our problem in the vast majority of cases.

link|flag
vote up 1 vote down

Eric

I have seen this happen in my own environment a number of times. The client application in this case is installed on many machines. Some of those machines happen to be laptops people were leaving the application open disconnecting it and then plugging it back in and attempting to use it. This will then cause the error you have mentioned.

My first point would be to look at the network and ensure that servers aren't on DHCP and renewing IP Addresses causing this error. If that isn't the case then you have to start trawlling through your event logs looking for other network related.

Unforunately it is as stated above a network error. The main thing you can do is just monitor the connections using a tool like netmon and work back from there.

Good Luck.

link|flag

Your Answer

Get an OpenID
or

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