SET STATISTICS IO ON;olduğunda istatistiksel bilgiler görüntülenir. Bu seçenek açık olduktan sonra aşağıdaki komut kullanılana kadar tüm istatistiksel bilgiler görüntülenir. 
SET STATISTICS IO OFF; olduğunda istatistiksel bilgiler kapatılır.
Aşağıdaki örnekte SQL uygulanırken kaç tane mantıksalve fiziksel okuma olduğu gösterilmektedir.
USE [AdventureWorks2016CTP3]
GO         
SET STATISTICS IO ON;  
GO  
SELECT *   
FROM Production.ProductCostHistory  
WHERE StandardCost < 500.00;  
GO  
SET STATISTICS IO OFF;  
(269 rows affected)
Table 'ProductCostHistory'. Scan count 1,
logical reads 5, physical reads 0, read-ahead reads 0, lob logical reads 0, lob
physical reads 0, lob read-ahead reads 0.
(1 row affected)
 
