Oracle8i Replication Management API Reference
Release 2 (8.1.6)

A76958-01

Library

Product

Contents

Index

Prev Up Next

Replication Management API Reference, 93 of 179


DROP_conflicttype_RESOLUTION procedure

This procedure drops an update, delete, or uniqueness conflict resolution routine. You must call these procedures from the master definition site. The procedure that you must call is determined by the type of conflict that the routine resolves.

Parameters

Table 8-165 DROP_conflicttype_RESOLUTION Procedure Parameters
Parameter  Description 
update
 
DROP_UPDATE_RESOLUTION.
 
uniqueness
 

DROP_UNIQUE_RESOLUTION. 

delete
 

DROP_DELETE_RESOLUTION. 

Syntax

DBMS_REPCAT.DROP_UPDATE_RESOLUTION (
   sname              IN   VARCHAR2, 
   oname              IN   VARCHAR2, 
   column_group       IN   VARCHAR2, 
   sequence_no        IN   NUMBER);

DBMS_REPCAT.DROP_DELETE_RESOLUTION (
   sname              IN   VARCHAR2, 
   oname              IN   VARCHAR2, 
   sequence_no        IN   NUMBER);

DBMS_REPCAT.DROP_UNIQUE_RESOLUTION (
   sname              IN   VARCHAR2, 
   oname              IN   VARCHAR2, 
   constraint_name    IN   VARCHAR2, 
   sequence_no        IN   NUMBER);

Parameters

Table 8-166 DROP_conflicttype_RESOLUTION Procedure Parameters
Parameter  Description 
sname
 

Schema in which the table is located. 

oname
 

Name of the table for which you want to drop a conflict resolution routine. 

column_group
 

Name of the column group for which you want to drop an update conflict resolution routine. 

constraint_name
 

Name of the unique constraint for which you want to drop a unique conflict resolution routine. 

sequence_no
 

Sequence number assigned to the conflict resolution method that you want to drop. This number uniquely identifies the routine. 

Exceptions

Table 8-167 DROP_conflicttype_RESOLUTION Procedure Exceptions
Exception  Description 
nonmasterdef
 

Invocation site is not the master definition site. 

missingobject
 

Specified object does not exist as a table in the specified schema, or a conflict resolution routine with the specified sequence number is not registered. 

notquiesced
 

Replicated master group is not quiesced.  


Prev Up Next
Oracle
Copyright © 1999 Oracle Corporation.

All Rights Reserved.

Library

Product

Contents

Index