Created
January 4, 2017 06:57
-
-
Save bartread/f57d43c8281c4d17bdab07d9b463c9ae to your computer and use it in GitHub Desktop.
Enable/disable CPU and elapsed time stats for t-SQL query execution
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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