There are a large number of DBCC commands and it's easy to forget their names and syntax/order of parameters.
To help you can run the commands below:
To help you can run the commands below:
-- Show list of all DBCC commands
DBCC TRACEON(2520)
DBCC HELP ('?')
GO
-- Show help for specific command
DBCC HELP(show_statistics)
This piece of code is ideal for a Snippet.
Comments
Post a Comment