Set and Verify the Retention Value for Change Data Capture

Posted by AllenMWhite on SQL Blog See other posts from SQL Blog or by AllenMWhite
Published on Thu, 08 Mar 2012 01:14:00 GMT Indexed on 2012/03/18 18:15 UTC
Read the original article Hit count: 273

Last summer I set up Change Data Capture for a client to track changes to their application database to apply those changes to their data warehouse. The client had some issues a short while back and felt they needed to increase the retention period from the default 3 days to 5 days. I ran this query to make that change: sp_cdc_change_job @job_type='cleanup', @retention=7200 The value 7200 represents the number of minutes in a period of 5 days. All was well, but they recently asked how they can verify...(read more)

© SQL Blog or respective owner

Related posts about Database Administration

Related posts about SQL Server 2008