The dbcc_config table describes the currently executing or last completed dbcc checkstorage operation. It defines:
The location of resources dedicated to the dbcc checkstorage operation
Resource usage limits for the dbcc checkstorage operation
The columns for dbcc_config are:
Column name  | 
Datatype  | 
Description  | 
|---|---|---|
dbid  | 
smallint  | 
Matches the dbid from a row in sysindatabases.  | 
type_code  | 
int  | 
Matches the type_code from a row in the dbcc_types table. Valid values are 1–9.  | 
value  | 
int  | 
Specifies the value of the item identified by type_code. Can be null only if the value of stringvalue is not null.  | 
stringvalue  | 
varchar(255)  | 
Specifies the value of the item identified by type_code. Can be null only if the value of value is not null.  | 
Combination of dbid and type_code
For information on initializing and updating dbcc_config, see the System Administration Guide.