My CDC 2007
My CDC 2007
Selva Kumar
USE AdventureWorks GO INSERT INTO [HumanResources].[Shift] ([Name],[StartTime],[EndTime],[ModifiedDate]) VALUES ('Tracked Shift',GETDATE(), GETDATE(), GETDATE()) Go
USE AdventureWorks GO UPDATE [HumanResources].[Shift] SET Name = 'New Name', ModifiedDate = GETDATE() WHERE ShiftID = 4 GO
Summary
Introduction to Change Data Capture Enabling Change Data Capture on a Database & Tables
what is cdc ? how it is used ? On DMLEXEC Operations Such as :sys.sp_cdc_enabled_db Insert , update , Delete Operations EXEC sys.sp_cdc_enable_table On DML Operations Such as :sys.sp_cdc_cleanup_change_table Insert , update , Delete Operations
sys.sp_cdc_cleanup_change_table
CDC is a versatile tool which is used to identify the changes made in the Database ,Reduce Time for Investigation.