Use SQL to query CDC data
- Last Updated: February 11, 2026
- 1 minute read
- OpenEdge
- Version 13.0
- Documentation
Here you will find a description of how applications can build queries to access CDC data so that an application can use the CDC data and perform tasks like ETL. The following table contains information on basic CDC schema and related tables:
| CDC/Schema table name | Description |
|---|---|
CDC table Policy
|
Defines a database table for CDC and declares which changes the OpenEdge database will capture. |
CDC Field Policy
|
Defines specific fields for which changes should be captured. CDC Field Policy is optional. |
_File table
|
This is a basic schema table for table definitions |
source table
|
This is the application table for which changes are tracked by CDC Note: The source table need not be a CDC table |
CDC Change Tracking table
|
This refers to many individual Change tables implicitly, using references to the table Policy, and the table Policy’s source table, for individual changes |
CDC Change table
|
A specific table containing change data as prescribed by CDC table Policy for a
given source table.
|