Steve Stedman shows us how to get percentage complete of a DBCC CHECKDB run:
You have a DBCC CHECKDB script running, something like the following, and it may take several hours to run to confirm if there is any corruption in your SQL Server Database.
1DBCC CHECKDB (
'MyDatabaseName'
)
WITH
DATA_PURITY, NO_INFOMSGS;
Then someone asks you the age old question… When will it be done?
Click through for a quick script and the answer.
Comments closed