Oracle9i Replication Management API Reference
Release 1 (9.0.1)

Part Number A87502-01
Go To Documentation Library
Home
Go To Product List
Book List
Go To Table Of Contents
Contents
Go To Index
Index

Master Index

Feedback

Go to previous page Go to beginning of chapter Go to next page

DBMS_REPCAT, 9 of 69


ALTER_MASTER_PROPAGATION Procedure

This procedure alters the propagation method for a specified replication group at a specified master site. This replication group must be quiesced. You must call this procedure from the master definition site. If the master appears in the dblink_list or dblink_table, then ALTER_MASTER_PROPAGATION ignores that database link. You cannot change the propagation mode from a master to itself.

Syntax

DBMS_REPCAT.ALTER_MASTER_PROPAGATION (
   gname               IN   VARCHAR2, 
   master              IN   VARCHAR2,
   { dblink_list       IN   VARCHAR2, 
   | dblink_table      IN   DBMS_UTILITY.DBLINK_ARRAY,}
   propagation_mode    IN   VARCHAR2 : ='ASYNCHRONOUS',
   comment             IN   VARCHAR2 := '');


Note:

This procedure is overloaded. The dblink_list and dblink_table parameters are mutually exclusive. 


Parameters

Table 20-17 ALTER_MASTER_PROPAGATION Procedure Parameters
Parameter  Description 
gname
 

Name of the replication group to which to alter the propagation mode. 

master
 

Name of the master site at which to alter the propagation mode. 

dblink_list
 

A comma-separated list of database links for which to alter the propagation method. If NULL, then all masters except the master site being altered are used by default. 

dblink_table
 

A PL/SQL index-by table, indexed from position 1, of database links for which to alter propagation. 

propagation_mode
 

Determines the manner in which changes from the specified master site are propagated to the sites identified by the list of database links. Appropriate values are synchronous and asynchronous

comment
 

This comment is added to the DBA_REPPROP view. 

Exceptions

Table 20-18 ALTER_MASTER_PROPAGATION Procedure Exceptions
Exception  Description 
nonmasterdef
 

Invocation site is not the master definition site. 

notquiesced
 

Invocation site is not quiesced. 

typefailure
 

Propagation mode specified was not recognized. 

nonmaster
 

List of database links includes a site that is not a master site. 


Go to previous page Go to beginning of chapter Go to next page
Oracle
Copyright © 1996-2001, Oracle Corporation.

All Rights Reserved.
Go To Documentation Library
Home
Go To Product List
Book List
Go To Table Of Contents
Contents
Go To Index
Index

Master Index

Feedback