Can you SKIP Applying only DELETE DMLs with a Logical Standby database in Data Guard 11gr2
I’m wanting to setup an Oracle Logical Standby database to be used for Reporting. However, I would like to SKIP the applying of any delete DMLs. This would be a combination reporting and archival database.
I'm using Oracle 11gr2.
It looks easy enough to SKIP applying of DMLs (insert,update,delete) against an object.
SQL> EXECUTE DBMS_LOGSTDBY.SKIP(STMT => 'DML', -
schema_name => 'HR', -
table_name => '%', -
proc_name => null);
With Oracle Streams Replication you can get to this level. But I have not found anything indicating I could SKIP just the delete DMLs with Data Guard Logical standby.