A checklist for fixing .Net apps to sql-server timeout problems and improve execution time - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T07:50:07Z http://stackoverflow.com/feeds/question/67366 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/67366/a-checklist-for-fixing-net-apps-to-sql-server-timeout-problems-and-improve-execu 2 A checklist for fixing .Net apps to sql-server timeout problems and improve execution time avgbody 2008-09-15T21:51:34Z 2008-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#67381 0 Answer by dpollock for A checklist for fixing .Net apps to sql-server timeout problems and improve execution time dpollock 2008-09-15T21:53:20Z 2008-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#67387 0 Answer by Jay Shepherd for A checklist for fixing .Net apps to sql-server timeout problems and improve execution time Jay Shepherd 2008-09-15T21:53:59Z 2008-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#67414 2 Answer by Asaf R for A checklist for fixing .Net apps to sql-server timeout problems and improve execution time Asaf R 2008-09-15T21:56:43Z 2008-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#67438 0 Answer by avgbody for A checklist for fixing .Net apps to sql-server timeout problems and improve execution time avgbody 2008-09-15T21:59:40Z 2008-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#67441 0 Answer by rob_g for A checklist for fixing .Net apps to sql-server timeout problems and improve execution time rob_g 2008-09-15T21:59:49Z 2008-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#67598 0 Answer by Brad Osterloo for A checklist for fixing .Net apps to sql-server timeout problems and improve execution time Brad Osterloo 2008-09-15T22:25:09Z 2008-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#67660 0 Answer by Martin Clarke for A checklist for fixing .Net apps to sql-server timeout problems and improve execution time Martin Clarke 2008-09-15T22:35:20Z 2008-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#68183 1 Answer by AlexCuse for A checklist for fixing .Net apps to sql-server timeout problems and improve execution time AlexCuse 2008-09-16T00:18:10Z 2008-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>