sys.sp_cdc_enable_db (Transact-SQL)

Enables change data capture for the current database. This procedure must be executed for a database before any tables can be enabled for change data capture in that database. Change data capture records insert, update, and delete activity applied to enabled tables, making the details of the changes available in an easily consumed relational format. Column information that mirrors the column structure of a tracked source table is captured for the modified rows, along with the metadata needed to apply the changes to a target environment. Change data capture is available only in SQL Server 2008 Enterprise, Developer, and Evaluation editions.

Topic link iconTransact-SQL Syntax Conventions

Syntax

sys.sp_cdc_enable_db

Return Code Values

0 (success) or 1 (failure)

Result Sets

None

Remarks

Change data capture cannot be enabled on system databases or distribution databases.

sys.sp_cdc_enable_db creates the change data capture objects that have database wide scope, including meta data tables and DDL triggers. It also creates the cdc schema and cdc database user and sets the is_cdc_enabled column for the database entry in the sys.databases catalog view to 1.

Permissions

Requires membership in the sysadmin fixed server role.

Examples

The following example enables change data capture for the AdventureWorks2008R2 database.

USE AdventureWorks2008R2;
GO
EXECUTE sys.sp_cdc_enable_db;
GO