SELECT TOP 5 creation_time, last_execution_time, total_clr_time,
total_clr_time
/execution_count AS [Avg CLR Time], last_clr_time,
execution_count, (
SELECT SUBSTRING(text, statement_start_offset/2,
(
CASE WHEN statement_end_offset = -1 THEN LEN(CONVERT(nvarchar(max),
text)) * 2 
ELSE statement_end_offset END - statement_start_offset)/2)
FROM sys.dm_exec_sql_text(sql_handle)) AS query_text
FROM sys.dm_exec_query_stats 
ORDER BY [Avg CLR Time] DESC;
GO
posted on 2009-09-04 14:11  ideas  阅读(190)  评论(0编辑  收藏  举报