20.10 GET_WORKSPACE_PARAMETER
The GET_WORKSPACE_PARAMETER procedure gets the workspace parameter.
                  
Syntax
GET_WORKSPACE_PARAMETER(
    p_workspace     IN VARCHAR2,
    p_parameter     IN VARCHAR2,
Parameters
Table 20-8 GET_WORKSPACE_PARAMETER Parameters
| Parameter | Description | 
|---|---|
| 
 | The name of the workspace to which you are getting the workspace 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