sys.sp_cdc_drop_job (Transact-SQL)
Removes a change data capture cleanup or capture job for the current database from msdb.
Transact-SQL Syntax Conventions
Syntax
sys.sp_cdc_drop_job [ [ @job_type = ] 'job_type' ]
Arguments
- [ @job\_type**=** ] 'job_type'
Type of job to remove. job_type is nvarchar(20) and cannot be NULL. Valid inputs are 'capture' and 'cleanup'.
Return Code Values
0 (success) or 1 (failure)
Result Sets
Nones
Remarks
sp_cdc_drop_job is called internally by sys.sp_cdc_disable_db.
Permissions
Requires membership in the db_owner fixed database role.
Examples
The following example removes the cleanup job for the AdventureWorks2012 database.
USE AdventureWorks2012;
GO
EXEC sys.sp_cdc_drop_job @job_type = N'cleanup';