The dbcc_config table describes the currently executing or last completed dbcc checkstorage operation.
The location of resources dedicated to the dbcc checkstorage operation
Resource usage limits for the dbcc checkstorage operation
The primary key is the combination of dbid and type_code
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 dbcc_types. Valid values are 1 – 9. |
value |
int null |
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) null |
Specifies the value of the item identified by type_code. Can be null only if the value of value is not null. |