sys.sp_cdc_disable_table

general
#stored-procedure

Description

Disables change data capture for the specified source table and capture instance in the current database. Change data capture isn’t available in every edition of SQL Server. For a list of features that are supported by the editions of SQL Server, see Editions and supported features The name of the schema in which the source table is contained. must exist in the current database.

Syntax

sys.sp_cdc_disable_table
[ @source_schema = ]
'source_schema'
, [ @source_name = ]
'source_name'
[ , [ @capture_instance = ] {
'capture_instance'
|
'all'
} ]
[ ; ]