Oracle8i Replication Management API Reference
Release 2 (8.1.6)

A76958-01

Library

Product

Contents

Index

Prev Up Next

Replication Management API Reference, 58 of 179


ALTER_MASTER_PROPAGATION procedure

This procedure alters the propagation method for a specified object group at a specified master site. This object 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 8-93 ALTER_MASTER_PROPAGATION Procedure Parameters
Parameter  Description 
gname
 

Name of the object 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 propagation. If NULL, then all masters except the master site being altered are used by default. 

dblink_table
 

A PL/SQL 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 8-94 ALTER_MASTER_PROPAGATION Procedure Exceptions
Exception  Description 
nonmasterdef
 

Local site is not the master definition site. 

notquiesced
 

Local 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. 


Prev Up Next
Oracle
Copyright © 1999 Oracle Corporation.

All Rights Reserved.

Library

Product

Contents

Index