SQL Server 中查看SQL句子执行所用的时间
程序员文章站
2023-11-12 15:49:22
复制代码 代码如下: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
执行完后点消息即可。
上一篇: 模糊查询的通用存储过程
推荐阅读
-
SQL Server 中查看SQL句子执行所用的时间
-
sql server中datetime字段去除时间的语句
-
ms sql server中实现的unix时间戳函数(含生成和格式化,可以和mysql兼容)
-
浅析SQL Server中的执行计划缓存(下)
-
SQL Server查看Sql语句执行的耗时和IO消耗
-
SQL SERVER 中构建执行动态SQL语句的方法
-
在SQL Server数据库中执行存储过程很快,在c#中调用很慢的问题
-
oracle中得到一条SQL语句的执行时间的两种方式
-
sql server中Select count(*)和Count(1)的区别和执行方式
-
Mysql中的sql是如何执行的 --- 极客时间学习笔记