-
-
Save mivano/e8c2292968cc1a93aab3444a363ce76a to your computer and use it in GitHub Desktop.
Azure SQL Query Profiler
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT query_stats.query_hash AS "Query Hash", | |
SUM(query_stats.total_worker_time) / SUM(query_stats.execution_count) AS "Avg CPU Time", | |
MIN(query_stats.statement_text) AS "Statement Text" | |
FROM | |
(SELECT QS.*, | |
SUBSTRING(ST.text, (QS.statement_start_offset/2) + 1, | |
((CASE statement_end_offset | |
WHEN -1 THEN DATALENGTH(ST.text) | |
ELSE QS.statement_end_offset END | |
- QS.statement_start_offset)/2) + 1) AS statement_text | |
FROM sys.dm_exec_query_stats AS QS | |
CROSS APPLY sys.dm_exec_sql_text(QS.sql_handle) as ST) as query_stats | |
GROUP BY query_stats.query_hash | |
ORDER BY 2 DESC; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment