Identifying MSSQL Performance Problems - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T00:17:24Z http://stackoverflow.com/feeds/question/14717 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/14717/identifying-mssql-performance-problems 3 Identifying MSSQL Performance Problems Chris 2008-08-18T14:39:51Z 2008-08-18T16:34:43Z <p>We're having sporadic, random query timeouts on our MSSQL2005 cluster. I own a few apps that use it, so I'm helping out in the investigation. When watching the % CPU time in regular ol' Perfmon, you can certainly see it pegging out. However, SQL activity monitor only gives cumulative CPU and IO time used by a process, not what it's using right then, or over a specific timeframe. Perhaps I could use the profiler and run a trace, but this cluster is very heavily used and I'm afraid I'd be looking for a needle in a haystack. Am I barking up the wrong tree?</p> <p>Does anyone have some good methods for tracking down expensive queries/processes in this environment?</p> http://stackoverflow.com/questions/14717/identifying-mssql-performance-problems/14730#14730 0 Answer by Yaakov Ellis for Identifying MSSQL Performance Problems Yaakov Ellis 2008-08-18T14:47:52Z 2008-08-18T14:47:52Z <p>Profiler may seem like a "needle in a haystack" approach, but it may turn up something useful. Try running it for a couple of minutes while the databases are under typical load, and see if any queries stand out as taking way too much time or hogging resources in some way. While a situation like this could point to some general issue, it could also be related to some specific issue with one or two sites, which mess things up enough in certain circumstances to cause very poor performance across the board.</p> http://stackoverflow.com/questions/14717/identifying-mssql-performance-problems/14757#14757 2 Answer by brendan for Identifying MSSQL Performance Problems brendan 2008-08-18T15:01:41Z 2008-08-18T15:01:41Z <p>We use Quest's <a href="http://www.quest.com/spotlight-on-sql-server-enterprise/" rel="nofollow">Spotlight</a> product. Obviously it's an investment in time and money so it might not help you out in the short term but if you are have a large SQL environment it's pretty useful.</p> http://stackoverflow.com/questions/14717/identifying-mssql-performance-problems/14766#14766 9 Answer by SQLMenace for Identifying MSSQL Performance Problems SQLMenace 2008-08-18T15:09:27Z 2008-08-18T15:09:27Z <p>This will give you the top 50 statements by average CPU time, check here for other scripts: <a href="http://www.microsoft.com/technet/scriptcenter/scripts/sql/sql2005/default.mspx?mfr=true" rel="nofollow"><a href="http://www.microsoft.com/technet/scriptcenter/scripts/sql/sql2005/default.mspx?mfr=true" rel="nofollow">http://www.microsoft.com/technet/scriptcenter/scripts/sql/sql2005/default.mspx?mfr=true</a></a></p> <pre><code>SELECT TOP 50 qs.total_worker_time/qs.execution_count as [Avg CPU Time], SUBSTRING(qt.text,qs.statement_start_offset/2, (case when qs.statement_end_offset = -1 then len(convert(nvarchar(max), qt.text)) * 2 else qs.statement_end_offset end -qs.statement_start_offset)/2) as query_text, qt.dbid, dbname=db_name(qt.dbid), qt.objectid FROM sys.dm_exec_query_stats qs cross apply sys.dm_exec_sql_text(qs.sql_handle) as qt ORDER BY [Avg CPU Time] DESC </code></pre> http://stackoverflow.com/questions/14717/identifying-mssql-performance-problems/14778#14778 1 Answer by Kareena for Identifying MSSQL Performance Problems Kareena 2008-08-18T15:13:47Z 2008-08-18T15:13:47Z <p>As Yaakov says, run profiler for a few minutes under typical load and save the results to a table which will allow you to run queries against the results making it much easier to spot any resource hogging queries.</p> http://stackoverflow.com/questions/14717/identifying-mssql-performance-problems/14794#14794 0 Answer by Curt Hagenlocher for Identifying MSSQL Performance Problems Curt Hagenlocher 2008-08-18T15:24:17Z 2008-08-18T15:24:17Z <p>Run Profiler and filter for queries that take more than a certain number of reads. For the application I worked on, any non-reporting query that took more than 5000 reads deserved a second look. Your app may have a different threshold, but the idea is the same.</p> http://stackoverflow.com/questions/14717/identifying-mssql-performance-problems/14868#14868 0 Answer by Michael Haren for Identifying MSSQL Performance Problems Michael Haren 2008-08-18T16:27:51Z 2008-08-18T16:27:51Z <p><a href="http://www.sommarskog.se/sqlutil/aba_lockinfo.html" rel="nofollow">This utility</a> by Erland Sommarskog is awesomely useful.</p> <p>It's a stored procedure you add to your database. Run it whenever you want to see what queries are active and get a good picture of locks, blocks, etc. I use it regularly when things seem gummed up.</p> http://stackoverflow.com/questions/14717/identifying-mssql-performance-problems/14876#14876 3 Answer by Paul G for Identifying MSSQL Performance Problems Paul G 2008-08-18T16:34:43Z 2008-08-18T16:34:43Z <p>I've found the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=1d3a4a0d-7e0c-4730-8204-e419218c1efc&amp;displaylang=en" rel="nofollow">Performance Dashboard Reports</a> to be very helpful. They are a set of custom RS reports supplied by Microsoft. You just have to run the installer on your client PC and then run the setup.sql on the SQL Server instance. </p> <p>After that, right click on a database (does not matter which one) in SSMS and goto Reports -> Custom Reports. Navigate to and select the performance<em>dashboard</em>main.rdl which is located at in the \Program Files\Microsoft SQL Server\90\Tools\PerformanceDashboard folder by default. You only need to do this once. After the first time, it will show up in the reports list. </p> <p>The main dashboard view will show CPU utilization over time, among other things. You can refresh it occasionally. When you see a spike, just click on the bar in the graph to get the detail data behind it.</p>