What factors could cause the following SqlException: A transport-level error has occurred when receiving results from the server. (provider: Shared Memory Provider, error: 1 - I/O Error detected in read/write operation) - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T05:21:45Z http://stackoverflow.com/feeds/question/52711 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/52711/what-factors-could-cause-the-following-sqlexception-a-transport-level-error-has 5 What factors could cause the following SqlException: A transport-level error has occurred when receiving results from the server. (provider: Shared Memory Provider, error: 1 - I/O Error detected in read/write operation) Scott A. Lawrence 2008-09-09T19:36:57Z 2009-01-12T21:07:48Z <p>I've started seeing this message intermittently for a few of the unit tests in my application (there are over 1100 unit &amp; system tests). I'm using the test runner in ReSharper 4.1.</p> <p>One other thing: my development machine is a VMWare virtual machine.</p> http://stackoverflow.com/questions/52711/what-factors-could-cause-the-following-sqlexception-a-transport-level-error-has/52729#52729 5 Answer by David Basarab for What factors could cause the following SqlException: A transport-level error has occurred when receiving results from the server. (provider: Shared Memory Provider, error: 1 - I/O Error detected in read/write operation) David Basarab 2008-09-09T19:44:50Z 2009-01-12T21:07:48Z <p>I ran into this many moons ago. Bottom line is you are running out of available ports.</p> <p>First make sure your calling application has collection pooling on.</p> <p>If that does then check the number of available ports for the SQL Server.</p> <p>What is happening is that if pooling is off then every call takes a port and it takes by default 4 minutes to have the port expire, and you are running out of ports.</p> <p>If pooling is on then you need to profile all the ports of SQL Server and make sure you have enough and expand them if necessary.</p> <p>When I came across this error, connection pooling was off and it caused this issue whenever a decent load was put on the website. We did not see it in development because the load was 2 or 3 people at max, but once the number grew over 10 we kept seeing this error. We turned pooling on, and it fixed it.</p> http://stackoverflow.com/questions/52711/what-factors-could-cause-the-following-sqlexception-a-transport-level-error-has/52741#52741 2 Answer by JasonS for What factors could cause the following SqlException: A transport-level error has occurred when receiving results from the server. (provider: Shared Memory Provider, error: 1 - I/O Error detected in read/write operation) JasonS 2008-09-09T19:49:58Z 2008-09-09T19:49:58Z <p>I ran into this many moons ago as well. However, not to discount @Longhorn213s explanation, but we had the exact opposite behavior. We received the error in development and testing, but not production where obviously the load was much greater. We ended up tolerating the issue in development as it was sporadic and didn't materially slow down progress. I think there could be several reasons for this error, but was never able to pin point the cause myself.</p> http://stackoverflow.com/questions/52711/what-factors-could-cause-the-following-sqlexception-a-transport-level-error-has/52773#52773 0 Answer by Danimal for What factors could cause the following SqlException: A transport-level error has occurred when receiving results from the server. (provider: Shared Memory Provider, error: 1 - I/O Error detected in read/write operation) Danimal 2008-09-09T20:03:09Z 2008-09-09T20:03:09Z <p>I've seen that a lot when the network was funky, or the NIC was on the way out. Check out your network stack.</p> http://stackoverflow.com/questions/52711/what-factors-could-cause-the-following-sqlexception-a-transport-level-error-has/52783#52783 0 Answer by Jay Mooney for What factors could cause the following SqlException: A transport-level error has occurred when receiving results from the server. (provider: Shared Memory Provider, error: 1 - I/O Error detected in read/write operation) Jay Mooney 2008-09-09T20:06:01Z 2008-09-09T20:06:01Z <p>We saw this in our environment, and traced part of it down to the "NOLOCK" hint in our queries. We removed the NOLOCK hint and set our servers to use Snapshot Isolation mode, and the frequency of these errors was reduced quite a bit.</p> http://stackoverflow.com/questions/52711/what-factors-could-cause-the-following-sqlexception-a-transport-level-error-has/52963#52963 0 Answer by Trumpi for What factors could cause the following SqlException: A transport-level error has occurred when receiving results from the server. (provider: Shared Memory Provider, error: 1 - I/O Error detected in read/write operation) Trumpi 2008-09-09T21:31:03Z 2008-09-09T21:31:03Z <p>We've also run across this error and figured out that we were killing a SQL server connection from the database server. The client application is under the impression that the connection is still active and tries make use of that connection, but fails because it was terminated.</p>