32.14 GET_WORKSPACE_PARAMETER Procedure
Gets the workspace parameter.
Syntax
APEX_INSTANCE_ADMIN.GET_WORKSPACE_PARAMETER (
p_workspace IN VARCHAR2,
p_parameter IN VARCHAR2 )
Parameters
Parameter | Description |
---|---|
p_workspace |
The name of the workspace to which you are getting the workspace parameter. |
p_parameter |
The parameter name that overrides the instance parameter value of the same name for this workspace. Parameter names include:
|
Example
The following example prints the value of ALLOW_HOSTNAMES
for the HR workspace.
BEGIN
DBMS_OUTPUT.PUT_LINE (
APEX_INSTANCE_ADMIN.GET_WORKSPACE_PARAMETER (
p_workspace => 'HR',
p_parameter => 'ALLOW_HOSTNAMES' ));
END;
Parent topic: APEX_INSTANCE_ADMIN