Skip to content

Instantly share code, notes, and snippets.

@hakanak
Created December 29, 2019 18:24
Show Gist options
  • Save hakanak/1ebea6e6f2ae124a60a318ce48d7dd89 to your computer and use it in GitHub Desktop.
Save hakanak/1ebea6e6f2ae124a60a318ce48d7dd89 to your computer and use it in GitHub Desktop.
TOP CPU queries in SQL Server database with following query.
SELECT TOP 50
ObjectName = OBJECT_SCHEMA_NAME(qt.objectid,dbid) + '.' + OBJECT_NAME(qt.objectid, qt.dbid)
,TextData = qt.text
,DiskReads = qs.total_physical_reads -- The worst reads, disk reads
,MemoryReads = qs.total_logical_reads --Logical Reads are memory reads
,Executions = qs.execution_count
,TotalCPUTime = qs.total_worker_time
,AverageCPUTime = qs.total_worker_time/qs.execution_count
,DiskWaitAndCPUTime = qs.total_elapsed_time
,MemoryWrites = qs.max_logical_writes
,DateCached = qs.creation_time
,DatabaseName = DB_Name(qt.dbid)
,LastExecutionTime = qs.last_execution_time
FROM sys.dm_exec_query_stats AS qs
CROSS APPLY sys.dm_exec_sql_text(qs.sql_handle) AS qt
ORDER BY qs.total_worker_time DESC;
@hakanak
Copy link
Author

hakanak commented Dec 29, 2019

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment