How to disable Change Data Capture on SQL Server Database?

You can disable Change Data Capture of any database which has CDC enabled already using below T-SQL Statement.

     Use [YourDatabase_name]
     EXEC sys.sp_cdc_disable_db

     GO

 
 
 
 

No comments:

Post a Comment