December 2013
Intermediate to advanced
1872 pages
153h 31m
English
Microsoft introduced a new feature called Change Data Capture (CDC), which is designed to make it much easier and less resource intensive to identify and retrieve changed data from tables in an online transaction processing (OLTP) database. In a nutshell, CDC captures and records INSERT, UPDATE, and DELETE activity in an OLTP database and stores it in a form that is easily consumed by an application, such as a SQL Server Integration Services (SSIS) package. This enables another option for developers to move (replicate) data to other targets that is extremely effective (because it deals with the delta’s changes, not the entire data sets all at once). Other software providers such as IBM have developed a whole line of very expensive ...