26.29 SET_WORKSPACE_CONSUMER_GROUP Procedure
The 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
Table 26-22 SET_WORKSPACE_CONSUMER_GROUP 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