SQL Server 中查看SQL句子执行所用的时间
程序员文章站
2023-12-04 17:40:58
复制代码 代码如下:set statistics profile on set statistics io on set statistics time on go 你执行...
复制代码 代码如下:
set statistics profile on
set statistics io on
set statistics time on
go
你执行的sql语句
复制代码 代码如下:
go
set statistics profile off
set statistics io off
set statistics time off
执行完后点消息即可。
上一篇: C#实现客户端弹出消息框封装类实例
下一篇: C#接口interface用法实例
推荐阅读
-
查看django执行的sql语句及消耗时间的两种方法
-
ms sql server中实现的unix时间戳函数(含生成和格式化,可以和mysql兼容)
-
SQL Server中的执行引擎入门 图解
-
sql server中Select count(*)和Count(1)的区别和执行方式
-
SQL Server中查看对象定义的SQL语句
-
oracle中得到一条SQL语句的执行时间的两种方式
-
sql server代理中作业执行SSIS包失败的解决办法
-
在oracle 数据库中查看一个sql语句的执行时间和SP2-0027错误
-
SQL Server 查询处理中的各个阶段(SQL执行顺序)示例
-
SQL Server 中查看SQL句子执行所用的时间