"timeout period elapsed prior to completion of the operation"
I estimate that the computer running my web app (also on same network in office as my computer but with dual cpus) should also take same amount of time.
Problem is the query IS NOT getting a chance to complete. It times out after about a minute or so.
Possible reasons I have checked for:
1. Sql Server is getting hit hard:
Checked. Im only one hitting it and its the only query. Sql server is on t1 with 256ram, 1.6Ghz cpu.
(Ram maybe an issue but if SQLQA can do it in 2 minute, im guessing so can ADO.NET in under 4 minutes)
2. Default connection string settings for time out is 15 seconds:
I bumped this up to 480.... "Connect Timeout=480;" is now in the connection string. 480 is seconds which is 4 minutes..plenty of time!!
3. im using ASP.NET forms authentication with timeout, maybe its cutting out early:
Checked my web.config page, and I set timeout="5" (which I confirmed in the docs...5 is 5 minutes).
4. ?? Need your help, cuz im f@$#n stumped now!
- john

