| Oracle9i Supplied PL/SQL Packages and Types Reference Release 1 (9.0.1) Part Number A89852-02 |
|
DBMS_WM , 19 of 52
This function returns the context of the current operation.
DBMS_WM.GetOpContext ( RETURN VARCHAR2;
This function returns one of the following values:
DML: The current operation is driven by data manipulation language (DML) initiated by the user.
MERGE_REMOVE: The current operation was initiated by a MergeWorkspace Procedure call with remove_workspace as TRUE or a MergeTable Procedure call with remove_data as TRUE.
MERGE_NOREMOVE: The current operation was initiated by a MergeWorkspace Procedure call with remove_workspace as FALSE or a MergeTable Procedure call with remove_data as FALSE.
The following example displays the context of the current operation.
SELECT DBMS_WM.GetOpContext FROM DUAL; GETOPCONTEXT -------------------------------------------------------------------------------- DML
|
|
![]() Copyright © 1996-2001, Oracle Corporation. All Rights Reserved. |
|