sys.sp_cdc_drop_job (Transact-SQL)

Applies to: SQL Server

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';  

See Also

dbo.cdc_jobs (Transact-SQL)
sys.sp_cdc_disable_db (Transact-SQL)
sys.sp_cdc_add_job (Transact-SQL)