Oracle8i Supplied Packages Reference Release 8.1.5 A68001-01 |
|
The DBMS_OFFLINE_OG
package contains public APIs for offline instantiation of master groups.
Note: These procedures are used in performing an offline instantiation of a master table in a multimaster replication environment. These procedure should not be confused with the procedures in the DBMS_OFFLINE_SNAPSHOT package (used for performing an offline instantiation of a snapshot) or with the procedures in the DBMS_REPCAT_INSTANTIATE package (used for instantiating a deployment template). See these respective packages for more information on their usage. |
Subprogram | Description |
---|---|
BEGIN_INSTANTIATION procedure |
Starts offline instantiation of a replicated object 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 object 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 object 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 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);