32.33 SET_WORKSPACE_CONSUMER_GROUP Procedure
Sets a Resource Manager Consumer Group to a workspace.
Syntax
SET_WORKSPACE_CONSUMER_GROUP (
    p_workspace IN VARCHAR2,
    p_rm_consumer_group IN VARCHAR2 )Parameters
| Parameters | Description | 
|---|---|
| p_workspace | This is the name of the workspace for which the resource consumer group is to be set. | 
| p_rm_consumer_group | The parameter  If the value of  | 
Example
The following example sets the workspace to the Resource Manager consumer group "CUSTOM_GROUP1":
BEGIN
        apex_instance_admin.set_workspace_consumer_group(
        p_workspace => 'MY_WORKSPACE',
        p_rm_consumer_group => 'CUSTOM_GROUP1' );
    COMMIT;
END;
/Parent topic: APEX_INSTANCE_ADMIN