Oracle9i Supplied PL/SQL Packages and Types Reference Release 2 (9.2) Part Number A96612-01 |
|
DBMS_OUTLN_EDIT , 2 of 2
This function changes the join position for the hint identified by outline name and hint number to the position specified by newpos
.
DBMS_OUTLN_EDIT.CHANGE_JOIN_POS ( name VARCHAR2 hintno NUMBER newpos NUMBER);
Parameter | Description |
---|---|
|
Name of the private outline to be modified. |
|
Hint number to be modified. |
|
New join position for the target hint. |
This procedure creates outline editing tables in calling a user's schema.
DBMS_OUTLN_EDIT.CREATE_EDIT_TABLES;
This procedure drops outline editing tables in calling the user's schema.
DBMS_OUTLN_EDIT.DROP_EDIT_TABLES;
This procedure refreshes the in-memory copy of the outline, synchronizing its data with the edits made to the outline hints.
DBMS_OUTLN_EDIT.REFRESH_PRIVATE_OUTLINE ( name IN VARCHAR2);
Parameter | Description |
---|---|
|
Name of the private outline to be refreshed. |
|
Copyright © 2000, 2002 Oracle Corporation. All Rights Reserved. |
|