dbcc_config

Description

The dbcc_config table describes the currently executing or last completed dbcc checkstorage operation. It defines:


Columns

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.


Primary key

Combination of dbid and type_code

See also

For information on initializing and updating dbcc_config, see the System Administration Guide.