Oracle DBMS_REPUTIL
Version 26ai

General Information
Library Note Morgan's Library Page Header
The best Oracle News for FY2026

Oracle Database 26ai is now availble. If you haven't you downloaded already: Why?
Note Advanced Replication has been dropped from version 12.2 with the sole exception being this one package from which essentially all functionality has been removed.
AUTHID DEFINER
Dependencies
DBMS_INTERNAL_TRIGGER    
Documented Yes
First Available 7.3.4
Security Model Owned by SYS with no privileges granted
Source {ORACLE_HOME}/rdbms/admin/dbmsgen.sql
Subprograms
 
REPLICATION_IS_ON
If false, do not forward/defer the update dbms_reputil.replication_is_on RETURN BOOLEAN;
BEGIN
  IF dbms_reputil.replication_is_on THEN
    dbms_output.put_line('T');
  ELSE
    dbms_output.put_line('F');
  END IF;
END;
/
T

PL/SQL procedure successfully completed.
 
REPLICATION_OFF
Stop replication dbms_reputil.replication_off;
exec dbms_reputil.replication_off;

PL/SQL procedure successfully completed.
 
REPLICATION_ON
Start replication dbms_reputil.replication_on;
exec dbms_reputil.replication_on;

PL/SQL procedure successfully completed.

Related Topics
Built-in Functions
Built-in Packages
DBMS_DEFER_IMPORT_INTERNAL
DBMS_REPCAT
DBMS_SNAPSHOT_UTL
What's New In 21c
What's New In 26ai

Morgan's Library Page Footer
This site is maintained by Daniel Morgan. Last Updated: This site is protected by copyright and trademark laws under U.S. and International law. © 1998-2026 Daniel A. Morgan All Rights Reserved