When you turn on this option, it will display the number of milliseconds required to parse, compile, and execute each statement. By default, this option is disabled.
SET STATISTICS TIME ON;
GO
SELECT * FROM [HUMANRESOURCES].[EMPLOYEE]
Output: –
SQL Server parse and compile time:
CPU time = 0 ms, elapsed time = 1 ms.
(290 row(s) affected)
SQL Server Execution Times:
CPU time = 0 ms, elapsed time = 60 ms.
Reference : Rohit Garg (http://mssqlfun.com/)
You can find and follow MSSQLFUN :-
http://www.facebook.com/mssqlfun
Other Linked Profiles :-
http://www.sqlservercentral.com/blogs/mssqlfun/
http://social.msdn.microsoft.com/Profile/rohitgarg
http://www.toadworld.com/members/rohit-garg/blogs/default.aspx
http://beyondrelational.com/members/RohitGarg/default.aspx
The post What is “SET STATISTICS TIME”? appeared first on MSSQLFUN.