Definition
Change Data Capture (CDC) is a technique that identifies and captures only the inserts, updates, and deletes made to a source database and streams those changes to downstream systems, keeping targets in sync continuously without repeatedly copying entire tables.
« Back to Glossary Index
- Moves only changed rows, slashing data volume compared with full reloads
- Keeps target systems near-real-time in sync with the source database
- Places minimal load on source systems by reading transaction logs rather than scanning tables
- Captures deletes and updates that naive incremental loads often miss