Name
DBMS_REPCAT.COMMENT_ON_COLUMN_GROUP
Synopsis
The COMMENT_ON_COLUMN_GROUP procedure adds or changes the comment associated with a column group. This comment is visible in the DBA_REPCOLUMN_GROUP data dictionary view.
PROCEDURE DBMS_REPCAT.COMMENT_ON_COLUMN_GROUP
(sname IN VARCHAR2,
oname IN VARCHAR2,
column_group IN VARCHAR2,
comment IN VARCHAR2);Parameters
Parameter Name | Description |
|---|---|
sname | Name of the schema to which the replicated table belongs |
oname | Name of the replicated table containing the column group |
column_group | Name of the column group |
comment | Comment |
Exceptions
Exception Name | Number | Description |
|---|---|---|
missinggroup | –23331 | column_group does not exist. |
nonmasterdef | –23312 | Calling site is not the master definition site. |
Restrictions
The COMMENT_ON_COLUMN_GROUP procedure must be called from the master definition site.