I got ” OGG-01433 Failed to validate table. The table is compressed and extract will not be able to extract data from Oracle logs ” error in the Oracle Goldengate.
OGG-01433 Failed to validate table. The table is compressed and extract will not be able to extract data from Oracle logs
Details of error are as follows.
The extract abended with OGG-01433 2011-05-26 08:49:48 ERROR OGG-01433 Oracle GoldenGate Capture for Oracle, EXXX.prm: Failed to validate table <SCHEMANAME.TABLENAME>. The table is compressed and extract will not be able to extract data from Oracle logs. 2011-05-26 08:49:48 ERROR OGG-01668 Oracle GoldenGate Capture for Oracle, EXXX.prm: PROCESS ABENDING.
: [/goldengate/product/GG19cFor18cDB/extract()] 2021-11-20 20:03:21 ERROR OGG-01433 Failed to validate table MSDB.TEST_TABLE. The table is compressed and extract will not be able to extract data from Oracle logs.
OGG does not support compressed tables or partitions prior to 11.2 Integrated Extract.
Oracle GoldenGate fully supports basic, advanced, and EHCC compressed tables in integrated capture (11.2) mode. In classic capture mode, Oracle GoldenGate can deliver to, but not capture from, regular and EHCC compressed tables on Oracle Exadata.
– Check if the table is compressed:
where owner = ‘<owner>’ and table_name = ‘<tablename>’;
Even if the query returns DISABLED, if any block in the table was ever compressed, EXTRACT will not be able to capture it.
– You can move the table. This will touch every block, but this will be very resource intensive for a large table and require a lot of disk:
SQL> SELECT partition_name, subpartition_name, tablespace_name, high_value FROM user_tab_subpartitions WHERE table_name = ‘table_name’;
– Alter statement for partition to move nocompress.
SQL> ALTER TABLE <Table_name> MOVE PARTITION <partition_name> NOCOMPRESS TABLESPACE <tablespace>;
– Please ensure that you are having enough disk space within tablespaces before running the ALTER statement.
The only option is to comment out the compressed table to exclude them from EXTRACT if you can’t do a “move nocompress”DDL EXCLUDE OBJNAME
Once you find the table name, you have to exclude this table from both DDL and DML in Extract parameter file by using DDL EXCLUDE and TABLEEXCLUDE.
Example
DDL EXCLUDE OBJNAME “OWNER.TABLE_NAME”
TABLEEXCLUDE OWNER.TABLE_NAME
To solve this error, uncompress this table.
Do you want to learn Oracle Database for Beginners, then read the following articles.
Oracle Tutorial | Oracle Database Tutorials for Beginners ( Junior Oracle DBA )
68,959 views last month, 1 views today