SQLSever显示物理和逻辑 IO活动量的相关信息及显示分析、编译和执行各语句所需的毫秒数。
SQLSever SET STATISTICS IO显示物理和逻辑 IO活动量的相关信息及SET STATISTICS TIME显示分析、编译和执行各语句所需的毫秒数。
1、 SET STATISTICS IO (Transact-SQL)
物理 IO 与访问磁盘上的数据页相关,逻辑 IO 与访问内存中的数据页(数据缓存)相关
1.1、语法
SET STATISTICS IO { ON | OFF }
1.2、输出项
下表列出并说明了各个输出项
输出项 | 含义 |
---|---|
Table | 表的名称。 |
Scan count | 在任意方向到达叶级别之后开始的搜索或扫描次数,搜索/扫描目的是检索所有用于构造输出的最终数据集的值。如果使用的索引是主键上的唯一索引或聚集索引,且只搜索一个值,则扫描计数为 0。 例如,WHERE Primary_Key_Column = 。当使用对非主键列定义的非唯一的聚集索引搜索一个值时,扫描计数为 1。 此过程的目的是针对你正在搜索的键值检查重复值。 例如,WHERE Clustered_Index_Key_Column = 。当 N 是使用索引键查找键值后,在叶级别向左侧或右侧开始的不同查找或扫描数时,扫描计数为 N。 |
logical reads | 从数据缓存读取的页数。 |
physical reads | 从磁盘读取的页数。 |
page server reads | 从页面服务器读取的页数。 ** |
read-ahead reads | 查询 通过预读放入缓存中的页数。 |
page server read-ahead reads | 通过 预读从页面服务器读取的页数,并通过查询放入数据缓存中。 ** |
lob logical reads | 从数据缓存中读取的 LOB* 页数。 |
lob page server reads | 从页面服务器读取的 LOB* 页数。 ** |
lob read-ahead reads | 查询 通过预读将 LOB* 页放入数据缓存中的页数。 |
lob physical reads | 从磁盘读取的 LOB* 页数。 |
lob page server read-ahead reads | 从 页面服务器读取的 LOB* 页数,并通过预读将数据缓存放入数据缓存中。 ** |
大型对象二进制 (LOB) 数据类型包括文本、ntext、image、varchar(max)、nvarchar(max)、varbinary(max)或列存储索引页。
1.3、注解
当 STATISTICS IO 为 ON 时,将显示统计信息;当为 OFF 时,不会显示该信息。
如果将此选项设置为“开”,则所有 Transact-SQL 语句均返回统计信息,直至将该选项设置为“关”。
SET STATISTICS IO设置是在执行或运行时设置的,而不是在分析时设置的。
1.4、权限
若要使用 SET STATISTICS IO,用户必须具有执行 Transact-SQL 语句的适当权限。 但不需要 SHOWPLAN 权限。
1.5、示例
此示例显示 SQL Server 处理语句时,进行了多少次逻辑读和物理读操作。
USE AdventureWorks2022;
GO
SET STATISTICS IO ON;
GO
SELECT *
FROM Production.ProductCostHistory
WHERE StandardCost < 500.00;
GO
SET STATISTICS IO OFF;
GO
-- 下面是消息输出
SQL Server parse and compile time:
CPU time = 1 ms, elapsed time = 1 ms.
SQL Server Execution Times:
CPU time = 0 ms, elapsed time = 0 ms.
SQL Server parse and compile time:
CPU time = 39 ms, elapsed time = 97 ms.
SQL Server parse and compile time:
CPU time = 0 ms, elapsed time = 0 ms.
ProductID StartDate EndDate StandardCost ModifiedDate
----------- ----------------------- ----------------------- --------------------- -----------------------
707 2011-05-31 00:00:00.000 2012-05-29 00:00:00.000 12.0278 2012-05-29 00:00:00.000
707 2012-05-30 00:00:00.000 2013-05-29 00:00:00.000 13.8782 2013-05-29 00:00:00.000
707 2013-05-30 00:00:00.000 NULL 13.0863 2013-05-16 00:00:00.000
708 2011-05-31 00:00:00.000 2012-05-29 00:00:00.000 12.0278 2012-05-29 00:00:00.000
708 2012-05-30 00:00:00.000 2013-05-29 00:00:00.000 13.8782 2013-05-29 00:00:00.000
708 2013-05-30 00:00:00.000 NULL 13.0863 2013-05-16 00:00:00.000
709 2011-05-31 00:00:00.000 2012-05-29 00:00:00.000 3.3963 2012-05-29 00:00:00.000
710 2011-05-31 00:00:00.000 2012-05-29 00:00:00.000 3.3963 2012-05-29 00:00:00.000
997 2013-05-30 00:00:00.000 NULL 343.6496 2013-05-16 00:00:00.000
998 2013-05-30 00:00:00.000 NULL 343.6496 2013-05-16 00:00:00.000
999 2013-05-30 00:00:00.000 NULL 343.6496 2013-05-16 00:00:00.000
(269 行受影响)
Table 'ProductCostHistory'. Scan count 1, logical reads 5, physical reads 0, page server reads 0, read-ahead reads 0, page server read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob page server reads 0, lob read-ahead reads 0, lob page server read-ahead reads 0.
SQL Server Execution Times:
CPU time = 5 ms, elapsed time = 5 ms.
完成时间: 2024-11-22T19:20:53.4174046+08:00
2、 SET STATISTICS TIME (Transact-SQL)
显示分析、编译和执行各语句所需的毫秒数。
2.1、语法
SET STATISTICS TIME { ON | OFF }
2.2、备注
当 SET STATISTICS TIME 为 ON 时,会显示语句的时间统计信息。 为 OFF 时,不显示时间统计信息。
SET STATISTICS TIME 的设置是在执行或运行时设置,而不是在分析时设置。
Microsoft SQL Server 不能在纤程模式下提供准确的统计信息,而纤程模式在启用“轻型池”配置选项时激活。
只有当使用 SET STATISTICS TIME ON 执行查询时才更新 sysprocesses 表中的 cpu 列。 当 SET STATISTICS TIME 为 OFF 时,将返回 0。
ON 和 OFF 设置还影响 SQL Server Management Studio 内的“当前活动的进程信息视图”中的 CPU 列。
2.3、权限
若要使用 SET STATISTICS TIME,用户必须具有执行 Transact-SQL 语句的相应权限。 但不需要 SHOWPLAN 权限
2.4、示例
下面的示例显示服务器的执行、分析和编译时间。
USE AdventureWorks2022;
GO
SET STATISTICS IO ON;
GO
SELECT *
FROM Production.ProductCostHistory
WHERE StandardCost < 500.00;
GO
SET STATISTICS IO OFF;
GO
下面是结果集:
Table 'ProductCostHistory'. Scan count 1, logical reads 76, physical reads 0,
page server reads 0, read-ahead reads 0, page server read-ahead reads 0,
lob logical reads 0, lob physical reads 0, lob page server reads 0,
lob read-ahead reads 0, lob page server read-ahead reads 0.
3、可以同时执行IO/TIME
SET STATISTICS TIME,IO ON
SELECT BusinessEntityID
FROM HumanResources.Employee
WHERE NationalIDNumber = '509647174';
-- 返回的查询结果
BusinessEntityID
----------------
3
-- 返回的消息
SQL Server parse and compile time:
CPU time = 7 ms, elapsed time = 7 ms.
SQL Server parse and compile time:
CPU time = 0 ms, elapsed time = 0 ms.
(1 行受影响)
Table 'Employee'. Scan count 0, logical reads 2, physical reads 2, page server reads 0, read-ahead reads 0, page server read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob page server reads 0, lob read-ahead reads 0, lob page server read-ahead reads 0.
SQL Server Execution Times:
CPU time = 5 ms, elapsed time = 22 ms.
完成时间: 2024-11-22T18:41:13.9365475+08:00