59.48 GET_DEFAULT_SCHEMA Function
This function returns the default schema name associated with the current user.
Syntax
APEX_UTIL.GET_DEFAULT_SCHEMA
RETURN VARCHAR2;
Parameters
None.
Example
The following example shows how to use the GET_DEFAULT_SCHEMA
function. It returns the default schema name associated with the current user into a local variable.
DECLARE
VAL VARCHAR2(30);
BEGIN
VAL := APEX_UTIL.GET_DEFAULT_SCHEMA;
END;
Parent topic: APEX_UTIL