Skip to content

Latest commit

 

History

History
67 lines (52 loc) · 2.19 KB

File metadata and controls

67 lines (52 loc) · 2.19 KB
title sys.sp_cdc_drop_job (Transact-SQL) | Microsoft Docs
ms.custom
ms.date 03/14/2017
ms.prod sql
ms.prod_service database-engine
ms.reviewer
ms.technology system-objects
ms.topic language-reference
f1_keywords
sys.sp_cdc_drop_job_TSQL
sp_cdc_drop_job_TSQL
sp_cdc_drop_job
sys.sp_cdc_drop_job
dev_langs
TSQL
helpviewer_keywords
sp_cdc_drop_job
ms.assetid e8265846-8051-4848-b28e-fac27c10bdeb
author rothja
ms.author jroth

sys.sp_cdc_drop_job (Transact-SQL)

[!INCLUDEtsql-appliesto-ss2008-xxxx-xxxx-xxx-md]

Removes a change data capture cleanup or capture job for the current database from msdb.

Topic link icon 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)