SYSTEM Cited by 1 source
Microsoft SQL Server¶
Microsoft SQL Server is Microsoft's commercial OLTP relational database — the dominant Windows-native enterprise OLTP engine and one of the big-three commercial RDBMSs alongside Oracle and IBM Db2. On this wiki, SQL Server surfaces primarily as a CDC source database for streaming-ingest pipelines.
Stub page — expand on future SQL Server-internals sources.
CDC mechanism (architectural note)¶
SQL Server exposes change data capture via its native change tables mechanism: enabling CDC on a source table materialises the per-row insert / update / delete deltas into a dedicated system table that consumers read. This is the SQL Server-native analogue of MySQL's binlog and Postgres logical replication; the general pattern is the same CDC substrate.
Seen in¶
- sources/2025-11-06-redpanda-253-delivers-near-instant-disaster-recovery-and-more — named as the source database for Redpanda Connect's MSSQL CDC input, positioned as a "critical, battle-hardened OLTP database" in the launch post's low-risk-modernisation framing.
Related¶
- systems/redpanda-connect-mssql-cdc — the CDC consumer that reads from MSSQL change tables.
- systems/redpanda-connect — the integration layer.
- systems/mysql, systems/postgresql — peer OLTP RDBMSs, both sources for sibling CDC connectors in the same Redpanda Connect family.
- concepts/change-data-capture — the substrate pattern.
- patterns/cdc-driver-ecosystem — the pattern Redpanda Connect's MSSQL addition extends.