sp_dbcc_updateconfig includes new two options: enable excluded faults inserts and enable dbcc_counter inserts.
enable excluded faults inserts specifies whether or not excluded faults are inserted in the dbcc_faults and dbcc_fault_params tables during dbcc checkstorage. The default value for enable excluded faults inserts is off (0). The syntax is:
sp_dbcc_updateconfig {db_name | null }, "enable excluded faults inserts", [’0’ | ’1’]
Use sp_dbcc_exclusions to specify excluded faults.
enable dbcc_counter inserts specifies whether or not rows are inserted in the dbcc_counters table when dbcc checkstorage completes. The default value for enable dbcc_counter inserts is off (0). The syntax is:
sp_dbcc_updateconfig {db_name | null }, "enable dbcc_counter inserts", [’0’ | ’1’]
Two new rows have been added to the dbcc_types table to enable these changes. See “dbcc_types”. See the Reference Manual: Tables for a description of the dbcc_counters table.