How to Display, Amount of Disk Activity Generated by
Transact-SQL Statements?
Answer Posted / guest
You can set SQL Server to display information regarding the
amount of disk activity generated by T-SQL statements. This
option displays the number of scans, the number of logical
reads (pages accessed), and the number of physical reads
(disk accesses) for each table referenced in the statement.
This option also displays the number of pages written for
each statement. When STATISTICS IO is ON, statistical
information is displayed. When OFF, the information is not
displayed. After this option is set ON, all subsequent T-
SQL statements return the statistical information until the
option is set to OFF.
Here is the syntax:
SET STATISTICS IO {ON | OFF}
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
what are user defined datatypes? : Sql server database administration
How to see the event list of an existing trigger using sys.trigger_events?
what is denormalization and when would you go for it? : Sql server database administration
How do I start sql server 2016?
What is indexing a document?
do you know how to configure db2 side of the application? : Sql server database administration
Can you move the resources after pausing the node? : sql server database administration
How to get a list of columns in a view using the "sp_help" stored procedure?
What does indexation mean?
What to perform pattern match with the like operator?
How to return the date part only from a sql server datetime datatype?
What are the advantages of stored procedure in sql server?
What does dml stand for?
How to declare and use cursor variables?
How to change the ownership of a schema in ms sql server?