title | description | author | ms.author | ms.reviewer | ms.date | ms.service | ms.subservice | ms.topic | f1_keywords | helpviewer_keywords | dev_langs | ||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
sys.sp_cdc_stop_job (Transact-SQL) |
Stops a change data capture cleanup or capture job for the current database. |
markingmyname |
maghan |
randolphwest |
06/13/2023 |
sql |
system-objects |
reference |
|
|
|
[!INCLUDE SQL Server]
Stops a change data capture cleanup or capture job for the current database.
:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions
sys.sp_cdc_stop_job
[ [ @job_type = ] N'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_stop_job
can be used by an administrator to explicitly stop either the capture job or the cleanup job.
Requires membership in the db_owner fixed database role.
The following example stops the capture job for the [!INCLUDE sssampledbobject-md] database.
USE AdventureWorks2022;
GO
EXEC sys.sp_cdc_stop_job
@job_type = N'capture';
GO