Determining Whether Procedural Replication Is On
Use the GG_PROCEDURE_REPLICATION_ON function in the
DBMS_GOLDENGATE_ADM package to determine whether Oracle GoldenGate procedural replication is on or
off.
If you want to use Oracle GoldenGate in an Oracle Database Vault environment with procedural replication, then you must set the appropriate privileges. See Oracle Database Vault
Administrator’s Guide.
To enable procedural replication:
- Connect to the database as
sys(sqlplus,sqlcl,sqldeveloper) not as an Oracle GoldenGate administrator. - Run the
GG_PROCEDURE_REPLICATION_ONfunction.
Example 7-1 Running the GG_PROCEDURE_REPLICATION_ON Function
SET SERVEROUTPUT ON
DECLARE
on_or_off NUMBER;
BEGIN
on_or_off := DBMS_GOLDENGATE_ADM.GG_PROCEDURE_REPLICATION_ON;
IF on_or_off=1 THEN
DBMS_OUTPUT.PUT_LINE('Oracle GoldenGate procedural replication is ON.');
ELSE
DBMS_OUTPUT.PUT_LINE('Oracle GoldenGate procedural replication is OFF.');
END IF;
END;
/