CPU utilization by database? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T17:03:13Z http://stackoverflow.com/feeds/question/28952 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/28952/cpu-utilization-by-database 5 CPU utilization by database? Portman 2008-08-26T19:48:09Z 2009-02-03T22:27:49Z <p><em>I've always thought the answer to this was "no", but let's give CrackOverflow a shot...</em></p> <p>Is it possible to get a breakdown of CPU utilization <strong>by database</strong>? I'm ideally looking for a task manager type interface for SQL server, but instead of looking at the CPU utilization of each PID (like taskmgr) or each SPID (like spwho2k5), I want to view the total CPU utilization of each database. Assume a single SQL instance.</p> <p>I realize that tools could be written to collect this data and report on it, but I'm wondering if there is any tool that lets me see a live view of which databases are contributing most to the sqlservr.exe CPU load.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/28952/cpu-utilization-by-database/28974#28974 10 Answer by Adam for CPU utilization by database? Adam 2008-08-26T19:55:22Z 2008-08-26T19:55:22Z <p>SQL Server (starting with 2000) will install performance counters (viewable from Performance Monitor or Perfmon).</p> <p>One of the counter categories (from a SQL Server 2005 install is:) - SQLServer:Databases</p> <p>With one instance for each database. The counters available however do not provide a CPU % Utilization counter or something similar, although there are some rate counters, that you could use to get a good estimate of CPU. Example would be, if you have 2 databases, and the rate measured is 20 transactions/sec on database A and 80 trans/sec on database B --- then you would know that A contributes roughly to 20% of the total CPU, and B contributes to other 80%.</p> <p>There are some flaws here, as that's assuming all the work being done is CPU bound, which of course with databases it's not. But that would be a start I believe.</p> http://stackoverflow.com/questions/28952/cpu-utilization-by-database/488509#488509 16 Answer by Brent Ozar for CPU utilization by database? Brent Ozar 2009-01-28T17:20:34Z 2009-01-29T13:54:35Z <p>Sort of. Check this query out:</p> <pre><code>SELECT total_worker_time/execution_count AS AvgCPU , total_worker_time AS TotalCPU , total_elapsed_time/execution_count AS AvgDuration , total_elapsed_time AS TotalDuration , (total_logical_reads+total_physical_reads)/execution_count AS AvgReads , (total_logical_reads+total_physical_reads) AS TotalReads , execution_count , SUBSTRING(st.TEXT, (qs.statement_start_offset/2)+1 , ((CASE qs.statement_end_offset WHEN -1 THEN datalength(st.TEXT) ELSE qs.statement_end_offset END - qs.statement_start_offset)/2) + 1) AS txt , query_plan FROM sys.dm_exec_query_stats AS qs cross apply sys.dm_exec_sql_text(qs.sql_handle) AS st cross apply sys.dm_exec_query_plan (qs.plan_handle) AS qp ORDER BY 1 DESC </code></pre> <p>This will get you the queries in the plan cache in order of how much CPU they've used up. You can run this periodically, like in a SQL Agent job, and insert the results into a table to make sure the data persists beyond reboots.</p> <p>When you read the results, you'll probably realize why we can't correlate that data directly back to an individual database. First, a single query can also hide its true database parent by doing tricks like this:</p> <pre><code>USE msdb DECLARE @StringToExecute VARCHAR(1000) SET @StringToExecute = 'SELECT * FROM AdventureWorks.dbo.ErrorLog' EXEC @StringToExecute </code></pre> <p>The query would be executed in MSDB, but it would poll results from AdventureWorks. Where should we assign the CPU consumption?</p> <p>It gets worse when you:</p> <ul> <li>Join between multiple databases</li> <li>Run a transaction in multiple databases, and the locking effort spans multiple databases</li> <li>Run SQL Agent jobs in MSDB that "work" in MSDB, but back up individual databases</li> </ul> <p>It goes on and on. That's why it makes sense to performance tune at the query level instead of the database level.</p> <p>In the next version of SQL Server, Kilimanjaro, Microsoft is introducing performance management and app management features that will let us package a single database in a distributable and deployable DAC pack, and they're promising features to make it easier to manage performance of individual databases and their applications. Until then, though, you're stuck with DMV queries.</p> <p>For more of those, check out the <a href="http://sqlserverpedia.com/wiki/Transact_SQL_Code_Library" rel="nofollow">T-SQL repository at SQLServerPedia</a>. I'm the Editor-in-Chief over there, and Jason Massie of Terremark manages the query repository. He's got some great DMV queries like the one I mentioned here.</p> <p><em>Updated on 1/29 to include total numbers instead of just averages.</em></p> http://stackoverflow.com/questions/28952/cpu-utilization-by-database/509095#509095 1 Answer by Ry for CPU utilization by database? Ry 2009-02-03T22:01:55Z 2009-02-03T22:01:55Z <p>I think the answer to your question is no.</p> <p>The issue is that one activity on a machine can cause load on multiple databases. If I have a process that is reading from a config DB, logging to a logging DB, and moving transactions in and out of various DBs based on type, how do I partition the CPU usage?</p> <p>You could divide CPU utilization by the transaction load, but that is again a rough metric that may mislead you. How would you divide transaction log shipping from one DB to another, for instance? Is the CPU load in the reading or the writing?</p> <p>You're better off looking at the transaction rate for a machine and the CPU load it causes. You could also profile stored procedures and see if any of them are taking an inordinate amount of time; however, this won't get you the answer you want.</p> http://stackoverflow.com/questions/28952/cpu-utilization-by-database/509114#509114 0 Answer by Lieven for CPU utilization by database? Lieven 2009-02-03T22:07:03Z 2009-02-03T22:07:03Z <p>Take a look at <a href="http://www.sqlsentry.com/" rel="nofollow">SQL Sentry</a>. It does all you need and more.</p> <p>Regards, Lieven</p> http://stackoverflow.com/questions/28952/cpu-utilization-by-database/509201#509201 0 Answer by Guy for CPU utilization by database? Guy 2009-02-03T22:27:49Z 2009-02-03T22:27:49Z <p>Have you looked at SQL profiler?</p> <p>Take the standard "T-SQL" or "Stored Procedure" template, tweak the fields to group by the database ID (I think you have to used the number, you dont get the database name, but it's easy to find out using exec sp_databases to get the list)</p> <p>Run this for a while and you'll get the total CPU counts / Disk IO / Wait etc. This can give you the proportion of CPU used by each database.</p> <p>If you monitor the PerfMon counter at the same time (log the data to a SQL database), and do the same for the SQL Profiler (log to database), you <em>may</em> be able to correlate the two together.</p> <p>Even so, it should give you enough of a clue as to which DB is worth looking at in more detail. Then, do the same again with just that database ID and look for the most expensive SQL / Stored Procedures.</p>