What is the use of DBCC commands? DBCC is database consistency checker. DBCC commands are used to check the consistency of the databases. DBCC CHECKDB - Ensures that tables and the indexes are correctly linked in the database. DBCC CHECKALLOC - Ensures all pages are correctly allocated in the database. DBCC SQLPERF - Provides report on current usage of transaction log in percentage. DBCC CHECKFILEGROUP - Checks all tables file group for any damage
|