Oracle8i Supplied PL/SQL Packages Reference Release 2 (8.1.6) Part Number A76936-01 |
|
DBMS_OFFLINE_OG, 2 of 2
Subprogram | Description |
---|---|
BEGIN_INSTANTIATION Procedure |
Starts offline instantiation of a replicated master group. |
BEGIN_LOAD Procedure |
Disables triggers while data is imported to new master site as part of offline instantiation. |
END_INSTANTIATION Procedure |
Completes offline instantiation of a replicated master group. |
END_LOAD Procedure |
Re-enables triggers after importing data to new master site as part of offline instantiation. |
RESUME_SUBSET_OF_ MASTERS Procedure |
Resumes replication activity at all existing sites except the new site during offline instantiation of a replicated master group. |
This procedure starts offline instantiation of a replicated master group. You must call this procedure from the master definition site.
DBMS_OFFLINE_OG.BEGIN_INSTANTIATION ( gname IN VARCHAR2, new_site IN VARCHAR2 fname IN VARCHAR2);
This procedure disables triggers while data is imported to the new master site as part of offline instantiation. You must call this procedure from the new master site.
DBMS_OFFLINE_OG.BEGIN_LOAD ( gname IN VARCHAR2, new_site IN VARCHAR2);
This procedure completes offline instantiation of a replicated master group. You must call this procedure from the master definition site.
DBMS_OFFLINE_OG.END_INSTANTIATION ( gname IN VARCHAR2, new_site IN VARCHAR2);
This procedure re-enables triggers after importing data to new master site as part of offline instantiation. You must call this procedure from the new master site.
DBMS_OFFLINE_OG.END_LOAD ( gname IN VARCHAR2, new_site IN VARCHAR2 fname IN VARCHAR2);
This procedure resumes replication activity at all existing sites except the new site during offline instantiation of a replicated master group. You must call this procedure from the master definition site.
DBMS_OFFLINE_OG.RESUME_SUBSET_OF_MASTERS ( gname IN VARCHAR2, new_site IN VARCHAR2 override IN BOOLEAN := FALSE);
|
![]() Copyright © 1996-2000, Oracle Corporation. All Rights Reserved. |
|