17.25 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 17-23 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