Time for action – changing the Database Guard setting
As we mentioned before, the default Database Guard mode for a logical standby database is set to ALL
. Let's try to insert data into the HR.REGIONS
table, which is out of the replication scope because of the skip rule we created.
- Connect the logical standby database with
SYS
user. Check the Database Guard mode andskip
rules with the following query:SQL> SELECT GUARD_STATUS FROM V$DATABASE; GUARD_S ------- ALL SQL> SELECT OWNER, NAME,STATEMENT_OPT, PROC FROM DBA_LOGSTDBY_SKIP WHERE STATEMENT_OPT <> 'INTERNAL SCHEMA'; OWNER NAME STATEMENT_OPT PROC -------- ------------ --------------- ------------------ DIRECTORY HR % DML TABLESPACE SYS.CHANGE_TS_DDL
Database Guard mode is
ALL
and allHR
tables ...
Get Oracle Data Guard 11gR2 Administration Beginner's Guide now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.