Question: I can get the help details for a dbcc sql command via the DBCC HELP function. For example, something like DBCC HELP('CHECKDB') will display the usage details for the DBCC CHECKDB. A very useful function which saves me time from checking the MSDN site. But if I’m using an undocumented command such as DBCC AUTOPILOT I get : Msg 8987, Level 16, State 1, Line 1 No help available for DBCC statement 'AUTOPILOT'. Is there a way of accessing DBCC HELP details for sql undocumented tasks? Answer: The way to accesss the DBCC HELP details for undocumented sql commands...
Read more →