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

sql语句的效率测试

时间:2014-05-01 21:11:51      阅读:398      评论:0      收藏:0      [点我收藏+]

标签:style   class   code   color   get   string   set   rgb   com   line   file   

1.测试sql语句执行时间的方法,获得时间差

declare @end_date datetime
select @begin_date = getdate()
--要执行的sql语句
select @end_date = getdate()
select datediff(ms,@begin_date,@end_date) as ‘用时/毫秒‘
2.下面这种方法比较全面,将执行每个语句时采取的步骤作为行集返回,通过层次结构树的形式展示出来,输出中包含的列:
SET STATISTICS io ON
SET STATISTICS time ON
go
--要执行的sql语句
go
SET STATISTICS profile OFF
SET STATISTICS io OFF
SET STATISTICS time OFF

sql语句的效率测试,码迷,mamicode.com

sql语句的效率测试

标签:style   class   code   color   get   string   set   rgb   com   line   file   

原文地址:http://www.cnblogs.com/RiKi-hou/p/3702626.html

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