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

MS SQL Server 如何得到执行最耗时的前N条T-SQL语句-

时间:2014-05-26 01:51:02      阅读:280      评论:0      收藏:0      [点我收藏+]

标签:des   style   class   blog   c   code   

bubuko.com,布布扣
--得到最耗时的前N条T-SQL语句   
  
--适用于SQL SERVER 2005及其以上版本   
  
--给N赋初值为30   
declare @n int set @n=30   
  
;with maco as   
(     
    select top (@n)  
        plan_handle,  
        sum(total_worker_time) as total_worker_time ,  
        sum(execution_count) as execution_count ,  
        count(1) as sql_count  
    from sys.dm_exec_query_stats group by plan_handle  
    order by sum(total_worker_time) desc  
)  
select  t.text ,  
        a.total_worker_time ,  
        a.execution_count ,  
        a.sql_count  
from    maco a  
        cross apply sys.dm_exec_sql_text(plan_handle) t  
          
/* 结果格式如下  
text     total_worker_time  execution_count   sql_count  
-------- ------------------ ----------------- ---------   
内容略  
*/  
bubuko.com,布布扣

 

MS SQL Server 如何得到执行最耗时的前N条T-SQL语句-,布布扣,bubuko.com

MS SQL Server 如何得到执行最耗时的前N条T-SQL语句-

标签:des   style   class   blog   c   code   

原文地址:http://www.cnblogs.com/101key/p/3749719.html

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