SELECT creation_time  N'语句编译时间'
        ,last_execution_time  N'上次执行时间'
        --,COALESCE(DB_NAME(st.dbid), DB_NAME(CAST(pa.value as int))+'*') AS '数据库名'
        ,total_physical_reads N'物理读取总次数'
        ,total_logical_reads/execution_count N'每次逻辑读次数'
        ,total_logical_reads  N'逻辑读取总次数'
        ,total_logical_writes N'逻辑写入总次数'
        ,execution_count  N'执行次数'
        ,total_worker_time/1000 N'所用的CPU总时间ms'
        ,total_elapsed_time/1000  N'总花费时间ms'
        ,(total_elapsed_time / execution_count)/1000  N'平均时间ms'
        ,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) N'执行语句'
FROM sys.dm_exec_query_stats AS qs
CROSS APPLY sys.dm_exec_sql_text(qs.sql_handle) st
--OUTER APPLY sys.dm_exec_plan_attributes(plan_handle) pa
where 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+ 1not like '%fetch%'
            --and attribute = 'dbid' 
ORDER BY  total_elapsed_time / execution_count DESC;

相关文章:

  • 2021-12-05
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-13
  • 2021-07-25
  • 2021-06-13
猜你喜欢
  • 2021-04-16
  • 2021-10-06
  • 2021-07-16
  • 2022-12-23
  • 2022-12-23
  • 2021-08-01
  • 2022-12-23
相关资源
相似解决方案