Skip to content

Instantly share code, notes, and snippets.

@bartread
Created January 4, 2017 06:57
Show Gist options
  • Save bartread/f57d43c8281c4d17bdab07d9b463c9ae to your computer and use it in GitHub Desktop.
Save bartread/f57d43c8281c4d17bdab07d9b463c9ae to your computer and use it in GitHub Desktop.
Enable/disable CPU and elapsed time stats for t-SQL query execution
SET STATISTICS TIME ON;
GO
SELECT blah ...
GO
SET STATISTICS TIME OFF;
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment