A checklist for fixing .Net apps to sql-server timeout problems and improve execution time - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T07:50:07Zhttp://stackoverflow.com/feeds/question/67366http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/67366/a-checklist-for-fixing-net-apps-to-sql-server-timeout-problems-and-improve-execu2A checklist for fixing .Net apps to sql-server timeout problems and improve execution timeavgbody2008-09-15T21:51:34Z2008-09-17T18:01:16Z
<p>A checklist for improving execution time between .Net code and sql-server.
Anything from the basic to weird solutions is appreciated.</p>
<p><strong>Code:</strong></p>
<p>Change default timeout in command and connection by <a href="http://stackoverflow.com/questions/67366/a-checklist-for-fixing-net-apps-to-sql-server-timeout-problems-and-improve-exec#67438">avgbody</a></p>
<p>Use stored procedure calls instead of inline sql statement by <a href="http://stackoverflow.com/questions/67366/a-checklist-for-fixing-net-apps-to-sql-server-timeout-problems-and-improve-exec#67438">avgbody</a></p>
<p>Look for blocking/locking using Activity monitor by <a href="http://stackoverflow.com/questions/67366/a-checklist-for-fixing-net-apps-to-sql-server-timeout-problems-and-improve-exec#67387">Jay Shepherd</a></p>
<p><strong>Sql-Server:</strong></p>
<p>Watch out for parameter sniffing in stored procedures by <a href="http://stackoverflow.com/questions/67366/a-checklist-for-fixing-net-apps-to-sql-server-timeout-problems-and-improve-exec#68183">AlexCuse</a></p>
<p>Beware of dynamically growing the database by <a href="http://stackoverflow.com/questions/67366/a-checklist-for-fixing-net-apps-to-sql-server-timeout-problems-and-improve-exec#67660">Martin Clarke</a></p>
<p>Use Profiler to find any queries/stored procedures taking longer then 100 milliseconds by <a href="http://stackoverflow.com/questions/67366/a-checklist-for-fixing-net-apps-to-sql-server-timeout-problems-and-improve-exec#67598">BradO</a></p>
<p>Increase transaction timeout by <a href="http://stackoverflow.com/questions/67366/a-checklist-for-fixing-net-apps-to-sql-server-timeout-problems-and-improve-exec#67438">avgbody</a></p>
<p>Convert dynamic stored procedures into static ones by <a href="http://stackoverflow.com/questions/67366/a-checklist-for-fixing-net-apps-to-sql-server-timeout-problems-and-improve-exec#67438">avgbody</a></p>
<p>Check how busy the server is by <a href="http://stackoverflow.com/questions/67366/a-checklist-for-fixing-net-apps-to-sql-server-timeout-problems-and-improve-exec#67387">Jay Shepherd</a></p>
http://stackoverflow.com/questions/67366/a-checklist-for-fixing-net-apps-to-sql-server-timeout-problems-and-improve-execu/67381#673810Answer by dpollock for A checklist for fixing .Net apps to sql-server timeout problems and improve execution timedpollock2008-09-15T21:53:20Z2008-09-15T21:53:20Z<p>First and foremost - Check the actual query being ran. I use sql profiler as I setup through my program and check that all my queries are using correct joins and referencing keys when I can.</p>
http://stackoverflow.com/questions/67366/a-checklist-for-fixing-net-apps-to-sql-server-timeout-problems-and-improve-execu/67387#673870Answer by Jay Shepherd for A checklist for fixing .Net apps to sql-server timeout problems and improve execution timeJay Shepherd2008-09-15T21:53:59Z2008-09-15T21:53:59Z<p>A few quick ones...</p>
<ul>
<li>Check Processor use of server to see if it's just too busy</li>
<li>Look for blocking/locking going on with the Activity monitor</li>
<li>Network issues/performance</li>
</ul>
http://stackoverflow.com/questions/67366/a-checklist-for-fixing-net-apps-to-sql-server-timeout-problems-and-improve-execu/67414#674142Answer by Asaf R for A checklist for fixing .Net apps to sql-server timeout problems and improve execution timeAsaf R2008-09-15T21:56:43Z2008-09-15T21:56:43Z<p>A weird "solution" for complaints on long response time is to have a more interesting progress bar. Meaning, work on the user's feeling. One example is the Vista wait icon. That fast rotating circle, gives the feeling things are going faster. Google uses the same trick on Android (at least the version I've seen).</p>
<p>However, I suggest trying to address the technical problem first, and working on human behavior only when you're out of choices.</p>
<p>Asaf.</p>
http://stackoverflow.com/questions/67366/a-checklist-for-fixing-net-apps-to-sql-server-timeout-problems-and-improve-execu/67438#674380Answer by avgbody for A checklist for fixing .Net apps to sql-server timeout problems and improve execution timeavgbody2008-09-15T21:59:40Z2008-09-15T21:59:40Z<p>In the past some of my solutions have been:</p>
<ol>
<li><p>Fix the default time out settings of the sqlcommand:</p>
<p>Dim myCommand As New SqlCommand("[dbo].[spSetUserPreferences]", myConnection)</p>
<p>myCommand.CommandType = CommandType.StoredProcedure</p>
<p><strong>myCommand.CommandTimeout = 120</strong></p></li>
<li><p>Increase connection timeout string:</p>
<p>Data Source=mydatabase;Initial Catalog=Match;Persist Security Info=True;User ID=User;Password=password;<strong>Connection Timeout=120</strong></p></li>
<li><p>Increase transaction time-out in sql-server 2005</p>
<p>In management studio’s Tools > Option > Designers Increase the “Transaction time-out after:” even if “Override connection string time-out value for table designer updates” checked/unchecked. </p></li>
<li><p>Convert dynamic stored procedures into static ones</p></li>
<li><p>Make the code call a stored procedure instead of writing an inline sql statement in the code.</p></li>
</ol>
http://stackoverflow.com/questions/67366/a-checklist-for-fixing-net-apps-to-sql-server-timeout-problems-and-improve-execu/67441#674410Answer by rob_g for A checklist for fixing .Net apps to sql-server timeout problems and improve execution timerob_g2008-09-15T21:59:49Z2008-09-15T21:59:49Z<p>Run Profiler to measure the execution time of your queries.<br />
Check application logging for any deadlocks.</p>
http://stackoverflow.com/questions/67366/a-checklist-for-fixing-net-apps-to-sql-server-timeout-problems-and-improve-execu/67598#675980Answer by Brad Osterloo for A checklist for fixing .Net apps to sql-server timeout problems and improve execution timeBrad Osterloo2008-09-15T22:25:09Z2008-09-15T22:25:09Z<p>I like using Sql Server Profiler as well. I like to setup a trace on a client site on their database server for a good 15-30 minute chunk of time in the midst of the business day and log all queries/stored procs with an Duration > 100 milliseconds....thats my criteria anyway for "long-running" queries</p>
http://stackoverflow.com/questions/67366/a-checklist-for-fixing-net-apps-to-sql-server-timeout-problems-and-improve-execu/67660#676600Answer by Martin Clarke for A checklist for fixing .Net apps to sql-server timeout problems and improve execution timeMartin Clarke2008-09-15T22:35:20Z2008-09-15T22:35:20Z<p>Weird one that applied to sql server 2000 that might still apply today; make sure that you aren't trying to dynamically grow the db in production. There comes a point where the amount of time it takes to allocate that extra space and your normal load running will cause your queries to timeout (and the growth too!)</p>
http://stackoverflow.com/questions/67366/a-checklist-for-fixing-net-apps-to-sql-server-timeout-problems-and-improve-execu/68183#681831Answer by AlexCuse for A checklist for fixing .Net apps to sql-server timeout problems and improve execution timeAlexCuse2008-09-16T00:18:10Z2008-09-16T00:18:10Z<p>Are you using stored procs? If so you should watch out for parameter sniffing. In certain situations this can make for some very long running queries. Some reading:</p>
<p><a href="http://blogs.msdn.com/queryoptteam/archive/2006/03/31/565991.aspx" rel="nofollow">http://blogs.msdn.com/queryoptteam/archive/2006/03/31/565991.aspx</a></p>
<p><a href="http://blogs.msdn.com/khen1234/archive/2005/06/02/424228.aspx" rel="nofollow">http://blogs.msdn.com/khen1234/archive/2005/06/02/424228.aspx</a></p>