Name
DBMS_OFFLINE_OG.BEGIN_INSTANTIATION
Synopsis
The BEGIN_INSTANTIATION procedure is called from the master definition site to flag the beginning of offline instantiation.
PROCEDURE DBMS_OFFLINE_OG.BEGIN_INSTANTIATION
(gname IN VARCHAR2,
new_site IN VARCHAR2);Parameters
Parameter Name | Description |
|---|---|
gname | The replication group to which the site is being added |
new_site | The global name of the new site |
Exceptions
Exception Name | Number | Description |
|---|---|---|
badargument | –23430 | Group gname is NULL or ' ‘. |
missingrepgroup | –23373 | Group gname does not exist. |
nonmasterdef | –23312 | Routine is not being called from the master definition site. |
sitealreadyexists | –23432 | new_site already exists. |
wrongstate | –23431 | Group gname is not in NORMAL state at the master definition site. |
Restrictions
This procedure must be run from the master definition site.
Group gname must be quiesced.