| title | sys.sp_cdc_start_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 |
|
||||
| dev_langs |
|
||||
| helpviewer_keywords |
|
||||
| ms.assetid | cf443a67-7705-4799-9f39-0e3a6a8a0708 | ||||
| author | rothja | ||||
| ms.author | jroth |
[!INCLUDEtsql-appliesto-ss2008-xxxx-xxxx-xxx-md]
Starts a change data capture cleanup or capture job for the current database.
Transact-SQL Syntax Conventions
sys.sp_cdc_start_job [ [ @job_type = ] 'job_type' ]
[ [ @job_type = ] 'job_type' ]
Type of job to add. job_type is nvarchar(20) with a default of capture. Valid inputs are capture and cleanup.
0 (success) or 1 (failure)
None
sys.sp_cdc_start_job can be used by an administrator to explicitly start either the capture job or the cleanup job.
Requires membership in the db_owner fixed database role.
The following example starts the capture job for the AdventureWorks2012 database. Specifying a value for job_type is not required because the default job type is capture.
USE AdventureWorks2012;
GO
EXEC sys.sp_cdc_start_job;
GO
The following example starts a cleanup job for the AdventureWorks2012 database.
USE AdventureWorks2012;
GO
EXEC sys.sp_cdc_start_job @job_type = N'cleanup';
dbo.cdc_jobs (Transact-SQL)
sys.sp_cdc_stop_job (Transact-SQL)