-
Notifications
You must be signed in to change notification settings - Fork 15
Statistics Summary
Blake Becker edited this page May 12, 2026
·
1 revision
Statistics Summary makes SET STATISTICS IO output much easier to read. Instead of scanning through raw message text, you get a quick summary that helps you compare query versions and spot which tables are doing the most work.
If SET STATISTICS TIME is also enabled, the window includes CPU time and elapsed time as part of the summary.
- Total reads for the execution
- Reads per table
- Scan count per table
- Total CPU time and elapsed time when available
- Source connection and database
- The source query in an expandable section
- Open Statistics Summary from Axial SQL Tools.
- Run a query with
SET STATISTICS IO ON;. - Optionally add
SET STATISTICS TIME ON;. - Execute the query and review the summary.
- Makes SQL Server statistics output easier to compare
- Helps identify which tables are responsible for the most reads
- Gives a quick summary without manually adding values from repeated table entries