Oracle9i Supplied PL/SQL Packages and Types Reference
Release 1 (9.0.1)

Part Number A89852-02
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, 44 of 69


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.

Conflict Resolution Routines

The following table shows the procedure name for each conflict resolution routine.

Table 48-89 Conflict Resolution Routines
Routine  Procedure Name 
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 48-90 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 48-91 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
 

Master group is not quiesced.  


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