Skip to content

Instantly share code, notes, and snippets.

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