DBCC CHECKDB – Estimate

DBCC CHECKDB requires some amount of temporary space, to find the amount of space required in advance using ESTIMATEONLY option it will estimate amount of space required.

Example:
SET NOCOUNT ON
DBCC CHECKDB (‘AdventureWorks’) WITH ESTIMATEONLY
GO

Estimated TEMPDB space needed for CHECKALLOC (KB)
————————————————-
70

Estimated TEMPDB space needed for CHECKTABLES (KB)
————————————————–
198468

DBCC execution completed. If DBCC printed error messages, contact your system administrator.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.