To display SQL Server’s undocumented commands, you can run the following T-SQL:
1 2 3 4 |
DBCC TRACEON(2588); GO DBCC HELP ('?'); |
(use at your own risk, and not on a production server and always take a backup FIRST before using any of the commands!)
Views – 1991