Hi,
I have large wait times in ASYNC_NETWORK_IO on my SQL Server and I found this interesting article
http://blogs.msdn.com/joesack/archive/2009/01/09/troubleshooting-async-network-io-networkio.aspx
the part i find interesting is:
- Identify large result sets and verify with the application team (or developers) how this is being consumed. Red flags include the application querying large results sets but not processing more than a few rows at a time
If you are receiving a result set back from a linq query then you have processed it(?) How would you process it a few rows at a time(?) is this meaning an sql reader?
How would you go about finding if the application is causing the ASYNC_NETWORK_IO problem?
curious