zoukankan      html  css  js  c++  java
  • 数据库语句性能统计语句

    可以用以下语句统计数据库的性能,需要注意的是必须用管理员的权限打开数据库才可以执行。

       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
  • 相关阅读:
    vsftpd 配置:chroot_local_user与chroot_list_enable详解
    rsync同步目录
    apache
    centos 7 服务管理
    PowerPoint’s Menu is Too Big
    测试网页返回值
    作为人的展现方式
    Java 日期与时间
    Java 随机数
    Character 类
  • 原文地址:https://www.cnblogs.com/roy-blog/p/5976343.html
Copyright © 2011-2022 走看看