SET STATISTICS TIME ON.
Just consider following example
Select * from TableName
-- Or Any Query
SET STATISTICS TIME OFF
Then it will show following output
SQL Server parse and compile time:
CPU time = 31 ms, elapsed time = 141 ms.SET STATISTICS TIME ON.
Just consider following example
Select * from TableName
-- Or Any Query
SET STATISTICS TIME OFF
Then it will show following output
SQL Server parse and compile time:
CPU time = 31 ms, elapsed time = 141 ms.
Join the conversation! Your thoughts help the community grow.