Supported Objects and Operations for ProtgreSQL
This topic describes objects and operations that are supported by Oracle GoldenGate.
-
Oracle GoldenGate for PostgreSQL only supports DML operations (Insert/Update/Deletes). DDL replication is not supported.
-
Oracle GoldenGate for PostgreSQL supports replication of truncate operations beginning with PostgreSQL 11 and above, and requires the
GETTRUNCATES
parameter in Extract and Replicat. -
Case Sensitive/Insensitive names usage includes:
-
Unquoted names are case-insensitive and are implicitly lowercase. For example,
CREATE TABLE MixedCaseTable
andSELECT * FROM mixedcasetable
are equivalent. -
Quoted table and column names are case-sensitive and need to be listed correctly in Extracts and Replicats and with Oracle GoldenGate commands. For example,
TABLE appschema.”MixedCaseTable”
andADD TRANDATA appschema.”MixedCaseTable”
would be required to support a case-sensitive table name.
-