码迷,mamicode.com
首页 > 数据库 > 详细

执行次数最多的sql语句

时间:2016-04-05 12:32:07      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:

执行次数最多的sql语句

SELECT * FROM 
(
    SELECT top 1000 creation_time  N语句编译时间
            ,last_execution_time  N上次执行时间
            ,execution_count/datediff(mi,creation_time,getdate()) as 平均每分钟执行次数
            ,execution_count,datediff(mi,creation_time,getdate()) 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
    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) + 1) not like %fetch% 
                --and qs.execution_count>100 and
               -- (total_elapsed_time / execution_count)/1000>150
    --ORDER BY  ‘count/minute‘ DESC;
    ORDER BY   execution_count DESC
)
t ORDER BY 平均每分钟执行次数 desc

 

执行次数最多的sql语句

标签:

原文地址:http://www.cnblogs.com/davidhou/p/5354407.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!