PostgreSQL: Prerequisites for Configuring DDL
The DDL changes in the source database are not automatically handled by the Extract process in PostgreSQL. Perform the following steps before making any DDL changes on the source table.
- Stop the application data to the tables for which the DDL needs to be modified.
- OGG Extract has captured all the changes prior to the DDL change.
- Stop the Extract.
- Execute
DELETE TRANDATA
on the table. - Make the required DDL Change using
ALTER TABLE ADD COLUMN/DROP COLUMN
command. - Execute
ADD TRANDATA
on the table. - Start the Extract.
- Resume the application data on the table.