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 from which you are getting the workspace parameter. |
p_parameter |
The name of the parameter to get. 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