首页

源码搜藏网

首页 > 开发教程 > 数据库 >

SQL SERVER 查看SQL语句IO,时间,索引消耗

创建时间:2014-04-22 11:04  

1.查看SQL语句IO消耗

set statistics io on 
    select * from dbo.jx_order where order_time>'2011-04-12 12:49:57.580' 
set statistics io off

 

SQL SERVER 查看SQL语句IO,时间,索引消耗
 

 2.查看SQL语句时间消耗

set statistics time on 
     select * from dbo.jx_order where order_time>'2011-04-12 12:49:57.580' 
set statistics time off

SQL SERVER 查看SQL语句IO,时间,索引消耗

 3.查看SQL语句索引消耗

set statistics profile on 
       select * from dbo.jx_order
       where order_time>'2011-04-12 12:49:57.580' 
set statistics profile off

SQL SERVER 查看SQL语句IO,时间,索引消耗

 此上图中的红框可以看到此查询走了聚集索引扫描

上一篇:sql server 2008评估期已到 不能打开数据库了 我来告诉你怎么办
下一篇:SQL Server 2005恢复数据库详细图文教程

相关内容

热门推荐