Oracle® Database Administrator's Guide 11g Release 2 (11.2) Part Number E17120-07 |
|
|
PDF · Mobi · ePub |
Oracle Database Resource Manager (the Resource Manager) enables you to optimize resource allocation among the many concurrent database sessions. The following sections provide an overview of the Resource Manager:
When database resource allocation decisions are left to the operating system, you may encounter the following problems with workload management:
Excessive overhead
Excessive overhead results from operating system context switching between Oracle Database server processes when the number of server processes is high.
Inefficient scheduling
The operating system deschedules database servers while they hold latches, which is inefficient.
Inappropriate allocation of resources
The operating system distributes resources equally among all active processes and cannot prioritize one task over another.
Inability to manage database-specific resources, such as parallel execution servers and active sessions
The Resource Manager helps to overcome these problems by allowing the database more control over how hardware resources are allocated. In an environment with multiple concurrent user sessions that run jobs with differing priorities, all sessions should not be treated equally. The Resource Manager enables you to classify sessions into groups based on session attributes, and to then allocate resources to those groups in a way that optimizes hardware utilization for your application environment.
With the Resource Manager, you can:
Guarantee certain sessions a minimum amount of processing resources regardless of the load on the system and the number of users.
Distribute available processing resources by allocating percentages of CPU time to different users and applications. In a data warehouse, a higher percentage can be given to ROLAP (relational online analytical processing) applications than to batch jobs.
Limit the degree of parallelism of any operation performed by members of a group of users.
Manage the order of parallel statements in the parallel statement queue. Parallel statements from a critical application can be enqueued ahead of parallel statements from a low priority group of users.
Limit the number of parallel servers that a group of users can use. This ensures that all the available parallel servers are not allocated to only one group of users.
Create an active session pool. An active session pool consists of a specified maximum number of user sessions allowed to be concurrently active within a group of users. Additional sessions beyond the maximum are queued for execution, but you can specify a timeout period, after which queued jobs will terminate. The active session pool limits the total number of sessions actively competing for resources, thereby enabling active sessions to make faster progress.
Manage runaway sessions or calls in the following ways:
By placing an absolute limit on the percentage of CPU that a group can consume
By detecting when a session or call consumes more than a specified amount of CPU or I/O, and then automatically either terminating the session or call, or switching it to a consumer group that is allocated a small amount of CPU, which would in effect mitigate the impact of the runaway session or call
Prevent the execution of operations that the optimizer estimates will run for a longer time than a specified limit.
Limit the amount of time that a session can be idle. This can be further defined to mean only sessions that are blocking other sessions.
Configure an instance to use a particular scheme for allocating resources. You can dynamically change the scheme, for example, from a daytime scheme to a nighttime scheme, without having to shut down and restart the instance. You can also schedule a scheme change with Oracle Scheduler. See Chapter 28, "Oracle Scheduler Concepts" for more information.
The elements of the Resource Manager are described in the following table.
You use the DBMS_RESOURCE_MANAGER
PL/SQL package to create and maintain these elements. The elements are stored in tables in the data dictionary. You can view information about them with data dictionary views.
See Also:
"Resource Manager Data Dictionary Views"A resource consumer group (consumer group) is a collection of user sessions that are grouped together based on their processing needs. When a session is created, it is automatically mapped to a consumer group based on mapping rules that you set up. As a database administrator (DBA), you can manually switch a session to a different consumer group. Similarly, an application can run a PL/SQL package procedure that switches its session to a particular consumer group.
Because the Resource Manager allocates resources (such as CPU) only to consumer groups, when a session becomes a member of a consumer group, its resource allocation is then determined by the allocation for the consumer group. By default, each session in a consumer group shares the resources allocated to that group with other sessions in the group in a round robin fashion.
There are three special consumer groups that are always present in the data dictionary. They cannot be modified or deleted. They are:
SYS_GROUP
This is the initial consumer group for all sessions created by user accounts SYS
or SYSTEM
. This initial consumer group can be overridden by session-to–consumer group mapping rules.
This is the initial consumer group for all sessions started by user accounts other than SYS
and SYSTEM
. This initial consumer group can be overridden by session-to–consumer group mapping rules. DEFAULT_CONSUMER_GROUP
cannot be named in a resource plan directive.
This group applies collectively to all sessions that belong to a consumer group that is not part of the currently active plan, including sessions that belong to DEFAULT_CONSUMER_GROUP
. OTHER_GROUPS
must have a resource plan directive specified in every plan. It cannot be explicitly assigned to sessions through mapping rules.
The Resource Manager allocates resources to consumer groups according to the set of resource plan directives (directives) that belong to the currently active resource plan. There is a parent-child relationship between a resource plan and its resource plan directives. Each directive references one consumer group, and no two directives for the currently active plan can reference the same consumer group.
A directive has several ways in which it can limit resource allocation for a consumer group. For example, it can control how much CPU the consumer group gets as a percentage of total CPU, and it can limit the total number of sessions that can be active in the consumer group. See "About Resource Allocation Methods" for more information.
In addition to the resource plans that are predefined for each Oracle database, you can create any number of resource plans. However, only one resource plan is active at a time. When a resource plan is active, each of its child resource plan directives controls resource allocation for a different consumer group. Each plan must include a directive that allocates resources to the consumer group named OTHER_GROUPS
. OTHER_GROUPS
applies to all sessions that belong to a consumer group that is not part of the currently active plan.
Note:
Although the term "resource plan" (or just "plan") denotes one element of the Resource Manager, in this chapter it is also used to refer to a complete resource plan schema, which includes the resource plan element itself, its resource plan directives, and the consumer groups that the directives reference. For example, when this chapter refers to theDAYTIME
resource plan, it could mean either the resource plan element named DAYTIME
, or the particular resource allocation schema that the DAYTIME
resource plan and its directives define. Thus, for brevity, it is acceptable to say, "the DAYTIME
plan favors interactive applications over batch applications."Figure 27-1 shows a simple resource plan for an organization that runs online transaction processing (OLTP) applications and reporting applications simultaneously during the daytime. The currently active plan, DAYTIME
, allocates CPU resources among three resource consumer groups. Specifically, OLTP
is allotted 75% of the CPU time, REPORTS
is allotted 15%, and OTHER_GROUPS
receives the remaining 10%.
Oracle Database provides a procedure (CREATE_SIMPLE_PLAN
) that enables you to quickly create a simple resource plan. This procedure is discussed in "Creating a Simple Resource Plan".
Note:
The currently active resource plan does not enforce allocation limits until CPU usage is at 100%. If the CPU usage is below 100%, the database is not CPU-bound and hence there is no need to enforce limits to ensure that all sessions get their designated resource allocation.In addition, when limits are enforced, unused allocation by any consumer group can be used by other consumer groups. In the previous example, if the OLTP
group does not use all of its allocation, the Resource Manager permits the REPORTS
group or OTHER_GROUPS
group to use the unused allocation.
Instead of referencing a consumer group, a resource plan directive (directive) can reference another resource plan. In this case, the plan is referred to as a subplan. The subplan itself has directives that allocate resources to consumer groups and other subplans. The resource allocation scheme then works like this: The top resource plan (the currently active plan) divides resources among consumer groups and subplans. Each subplan allocates its portion of the total resource allocation among its consumer groups and subplans. You can create hierarchical plans with any number of subplans.
You create a resource subplan in the same way that you create a resource plan. To create a plan that is to be used only as a subplan, you use the SUB_PLAN
argument in the package procedure DBMS_RESOURCE_MANAGER.CREATE_PLAN
.
In any top level plan, you can reference a subplan only once. A subplan is not required to have a directive to OTHER_GROUPS
and cannot be set as a resource plan.
In this example, the Great Bread Company allocates the CPU resource as shown in Figure 27-2. The figure illustrates a top plan (GREAT_BREAD
) and all of its descendents. For simplicity, the requirement to include the OTHER_GROUPS
consumer group is ignored, and resource plan directives are not shown, even though they are part of the plan. Rather, the CPU percentages that the directives allocate are shown along the connecting lines between plans, subplans, and consumer groups.
Figure 27-2 A Resource Plan With Subplans
The GREAT_BREAD
plan allocates resources as follows:
20% of CPU resources to the consumer group MARKET
60% of CPU resources to subplan SALES_TEAM
, which in turn divides its share equally between the WHOLESALE
and RETAIL
consumer groups
20% of CPU resources to subplan DEVELOP_TEAM
, which in turn divides its resources equally between the BREAD
and MUFFIN
consumer groups
It is possible for a subplan or consumer group to have multiple parents. An example would be if the MARKET
group were included in the SALES_TEAM
subplan. However, a plan cannot contain any loops. For example, the SALES_TEAM
subplan cannot have a directive that references the GREAT_BREAD
plan.
See Also:
"Putting It All Together: Oracle Database Resource Manager Examples" for an example of a more complex resource plan.Resource plan directives specify how resources are allocated to resource consumer groups or subplans. Each directive can specify several different methods for allocating resources to its consumer group or subplan. The following sections summarize these resource allocation methods:
To manage CPU resources, Resource Manager allocates resources among consumer groups and redistributes CPU resources that were allocated but were not used. You can also set a limit on the amount of CPU resources that can be allocated to a particular consumer group.
Resource Manager provides the following resource plan directive attributes to control CPU resource allocation:
Management attributes enable you to specify how CPU resources are to be allocated among consumer groups and subplans. Multiple levels of CPU resource allocation (up to eight levels) provide a means of prioritizing CPU usage within a plan. Consumer groups and subplans at level 2 get resources that were not allocated at level 1 or that were allocated at level 1 but were not completely consumed by the consumer groups or subplans at level 1. Similarly, resource consumers at level 3 are allocated resources only when some allocation remains from levels 1 and 2. The same rules apply to levels 4 through 8. Multiple levels not only provide a way of prioritizing, but they provide a way of explicitly specifying how all primary and leftover resources are to be used.
Use the management attributes MGMT_P
n
, where n is an integer between 1 and 8, to specify multiple levels of CPU resource allocation. For example, use the MGMT_P1
directive attribute to specify CPU resource allocation at level 1 and MGMT_P2
directive attribute to specify resource allocation at level 2.
Use management attributes with parallel statement directive attributes, such as Degree of Parallelism Limit and Parallel Target Percentage, to control parallel statement queuing. When parallel statement queuing is used, management attributes are used to determine which consumer group is allowed to issue the next parallel statement. For example, if you set the MGMT_P1
directive attribute for a consumer group to 80, that group has an 80% chance of issuing the next parallel statement.
See Also:
Oracle Database VLDB and Partitioning Guide for information about parallel statement queuingManagement attributes also enable you to specify CPU resource allocation for Exadata I/O.
See Also:
Oracle Exadata Storage Server Software User's Guide for information about using management attributes for Exadata I/OTable 27-1 illustrates a simple resource plan with three levels.
Table 27-1 A Simple Three-Level Resource Plan
Consumer Group | Level 1 CPU Allocation | Level 2 CPU Allocation | Level 3 CPU Allocation |
---|---|---|---|
|
80% |
||
|
50% |
||
|
50% |
||
|
100% |
High priority applications run within HIGH_GROUP
, which is allocated 80% of CPU. Because HIGH_GROUP
is at level one, it gets priority for CPU utilization, but only up to 80% of CPU. This leaves a remaining 20% of CPU to be shared 50-50 by LOW_GROUP
and the MAINT_SUPLAN
at level 2. Any unused allocation from levels 1 and 2 are then available to OTHER_GROUPS
at level 3. Because OTHER_GROUPS
has no sibling consumer groups or subplans at its level, 100% is specified.
Within a particular level, CPU allocations are not fixed. If there is not sufficient load in a particular consumer group or subplan, residual CPU can be allocated to remaining consumer groups or subplans. Thus, when there is only one level, unused allocation by any consumer group or subplan can be redistributed to other "sibling" consumer groups or subplans. If there are multiple levels, then the unused allocation is distributed to the consumer groups or subplans at the next level. If the last level has unused allocations, these allocations can be redistributed to all other levels in proportion to their designated allocations.
As an example of redistribution of unused allocations from one level to another, if during a particular period, HIGH_GROUP
consumes only 25% of CPU, then 75% is available to be shared by LOW_GROUP
and MAINT_SUBPLAN
. Any unused portion of the 75% at level 2 is then made available to OTHER_GROUPS
at level 3. However, if OTHER_GROUPS
has no session activity at level 3, then the 75% at level 2 can be redistributed to all other consumer groups and subplans in the plan proportionally.
In the previous scenario, suppose that due to inactivity elsewhere, LOW_GROUP
acquires 90% of CPU. Suppose that you do not want to allow LOW_GROUP
to use 90% of the server because you do not want non-critical sessions to inundate the CPUs. The MAX_UTILIZATION_LIMIT
attribute of resource plan directives can prevent this situation.
Use the MAX_UTILIZATION_LIMIT
attribute to impose an absolute upper limit on CPU utilization for a resource consumer group. This absolute limit overrides any redistribution of CPU within a plan.
Setting the MAX_UTILIZATION_LIMIT
attribute is optional. If you omit this attribute for a consumer group, there is no limit on the amount of CPU that the consumer group can use. Therefore, if all the other applications are idle, a consumer group that does not have MAX_UTILIZATION_LIMIT
set can be allocated 100% of the CPU resources.
You can also use the MAX_UTILIZATION_LIMIT
attribute as the sole means of limiting CPU utilization for consumer groups, without specifying level limits.
Table 27-2 shows a variation of the previous plan. In this plan, using MAX_UTILIZATION_LIMIT
, CPU utilization is capped at 75% for LOW_GROUP
, 50% for MAINT_SUBPLAN
, and 75% for OTHER_GROUPS
. (Note that the sum of all maximum utilization limits can exceed 100%. Each limit is applied independently.)
Table 27-2 A Three-Level Resource Plan with Maximum Utilization Limits
Consumer Group | Level 1 CPU Allocation | Level 2 CPU Allocation | Level 3 CPU Allocation | Maximum Utilization Limit |
---|---|---|---|---|
|
80% |
|||
|
50% |
75% |
||
|
50% |
50% |
||
|
100% |
75% |
In the example described in Table 27-2, if HIGH_GROUP
is using only 10% of the CPU at a given time, then the remaining 90% is available to LOW_GROUP
and the consumer groups in MAINT_SUBPLAN
at level 2. If LOW_GROUP
uses only 20% of the CPU, then 70% can be allocated to MAINT_SUBPLAN
. However, MAINT_SUBPLAN
has a MAX_UTILIZATION_LIMIT
of 50%. Therefore, even though more CPU resources are available, the server cannot allocate more than 50% of the CPU to the consumer groups that belong to the subplan MAINT_SUBPLAN
.
You can set MAX_UTILIZATION_LIMIT
for both a subplan and the consumer groups that the subplan contains. In such cases, the limit for a consumer group is computed using the limits specified for the subplan and that consumer group. For example, the MAINT_SUBPLAN
contains the consumer groups MAINT_GROUP1
and MAINT_GROUP2
. MAINT_GROUP1
has MAX_UTILIZATION_LIMIT
set to 40%. However, the limit for MAINT_SUBPLAN
is set to 50%. Therefore, the limit for consumer group MAINT_GROUP1
is computed as 40% of 50%, or 20%. For an example of how to compute MAX_UTILIZATION_LIMIT
for a consumer group when limits are specified for both the consumer group and the subplan to which the group belongs, see "Example 4 - Specifying a Maximum Utilization Limit for Consumer Groups and Subplans".
You can control the maximum number of concurrently active sessions allowed within a consumer group. This maximum defines the active session pool. An active session is a session that is actively processing a transaction or SQL statement. Specifically, an active session is either in a transaction, holding a user enqueue, or has an open cursor and has not been idle for over 5 seconds. An active session is considered active even if it is blocked, for example waiting for an I/O request to complete. When the active session pool is full, a session that is trying to process a call is placed into a queue. When an active session completes, the first session in the queue can then be removed from the queue and scheduled for execution. You can also specify a period after which a session in the execution queue times out, causing the call to terminate with an error.
Active session limits should not be used for OLTP workloads. In addition, active session limits should not be used to implement connection pooling or parallel statement queuing.
To manage parallel statements, you must use parallel statement queuing with the PARALLEL_TARGET_PERCENTAGE
attribute and management attributes (MGMT_P1
, MGMT_P2
, and so on).
You can limit the maximum degree of parallelism for any operation within a consumer group. The degree of parallelism is the number of parallel execution servers that are associated with a single operation. Use the PARALLEL_DEGREE_LIMIT_P1
directive attribute to specify the degree of parallelism for a consumer group.
See Also:
Oracle Database VLDB and Partitioning Guide for more information about degree of parallelism in producer/consumer operationsThe degree of parallelism limit applies to one operation within a consumer group; it does not limit the total degree of parallelism across all operations within the consumer group. However, you can combine both the PARALLEL_DEGREE_LIMIT_P1
and the PARALLEL_TARGET_PERCENTAGE
directive attributes to achieve the desired control. For more information about the PARALLEL_TARGET_PERCENTAGE
attribute, see "Parallel Target Percentage".
It is possible for a single consumer group to launch enough parallel statements to use all the available parallel servers. If this happens, when a high-priority parallel statement from a different consumer group is run, then no parallel servers are available to allocate to this group. You can avoid such a scenario by limiting the number of parallel servers that can be used by a particular consumer group.
Note:
This functionality is available starting with Oracle Database 11g Release 2 (11.2.0.2).Use the PARALLEL_TARGET_PERCENTAGE
directive attribute to specify the maximum percentage of the parallel server pool that a particular consumer group can use. The number of parallel servers used by a particular consumer group is counted as the sum of the parallel servers used by all sessions in that consumer group.
See Also:
Oracle Database VLDB and Partitioning Guide for information about parallel statement queuingFor example, assume that the total number of parallel servers is 32, as set by the PARALLEL_SERVERS_TARGET
initialization parameter, and the PARALLEL_TARGET_PERCENTAGE
directive attribute for the consumer group MY_GROUP
is set to 50%. This consumer group can use a maximum of 50% of 32, or 16 parallel servers.
If your resource plan has management attributes (MGMT_P1
, MGMT_P2
, and so on), then a separate parallel statement queue is managed as a First In First Out (FIFO) queue for each management attribute.
If your resource plan does not have any management attributes, then a single parallel statement queue is managed as a FIFO queue.
In the case of an Oracle Real Application Clusters (Oracle RAC) environment, the target number of parallel servers is the sum of (PARALLEL_TARGET_PERCENTAGE
* PARALLEL_SERVERS_TARGET
/ 100) across all Oracle RAC instances. If a consumer group is using the number of parallel servers computed above or more, then it has exceeded its limit, and its parallel statements will be queued.
If a consumer group does not have any parallel statements running within an Oracle RAC database, then the first parallel statement is allowed to exceed the limit specified by PARALLEL_TARGET_PERCENTAGE
.
Note:
In an Oracle Real Application Clusters (Oracle RAC) environment, thePARALLEL_TARGET_PERCENTAGE
attribute applies to the entire cluster and not to a single instance.The PARALLEL_TARGET_PERCENTAGE
attribute enables you to specify when parallel statements from a consumer group can be queued. Oracle Database maintains a separate parallel statement queue for each consumer group.
A parallel statement from a consumer group is not run and instead added to the parallel statement queue of that consumer group if the following conditions are met:
PARALLEL_DEGREE_POLICY
is set to AUTO
.
Setting this parameter to AUTO
enables automatic degree of parallelism (Auto DOP), parallel statement queuing, and in-memory parallel execution.
Note that parallel statements which have PARALLEL_DEGREE_POLICY
set to MANUAL
or LIMITED
are executed immediately and not added to the parallel statement queue.
The number of active parallel servers across all consumer groups exceeds the PARALLEL_SERVERS_TARGET
initialization parameter setting. This condition applies regardless of whether you specify PARALLEL_TARGET_PERCENTAGE
. If PARALLEL_TARGET_PERCENTAGE
is not specified, then it defaults to 100%.
The sum of the number of active parallel servers for the consumer group and the degree of parallelism of the parallel statement exceeds the target number of active parallel servers.
The target number of active parallel servers is computed as follows:
PARALLEL_TARGET_PERCENTAGE
/100 * PARALLEL_SERVERS_TARGET
When you use parallel statement queuing, if the database does not have sufficient resources to execute a parallel statement, the statement is queued until the required resources become available. However, there is a chance that a parallel statement may be waiting in the parallel statement queue for longer than is desired. You can prevent such scenarios by specifying the maximum time a parallel statement can wait in the parallel statement queue.
Note:
This functionality is available starting with Oracle Database 11g Release 2 (11.2.0.2).The PARALLEL_QUEUE_TIMEOUT
directive attribute enables you to specify the maximum time, in seconds, that a parallel statement can wait in the parallel statement queue before it is timed out. The PARALLEL_QUEUE_TIMEOUT
attribute can be set for each consumer group. This attribute is applicable even if you do not specify other management attributes (MGMT_P1
, MGMT_P2
, and so on) in your resource plan.
See Also:
Oracle Database VLDB and Partitioning Guide for more information about parallel statement queuingNote:
Because the parallel statement queue is clusterwide, all directives related to the parallel statement queue are also clusterwide.When a parallel statement is timed out, the statement execution ends with the following error message:
ORA-07454: queue timeout, n second(s), exceeded
If you want more per-workload management, then you must use the following directive attributes:
MGMT_P
n
Management attributes control how a parallel statement is selected from the parallel statement queue for execution. You can prioritize the parallel statements of one consumer group over another by setting a higher value for the management attributes of that group.
PARALLEL_TARGET_PERCENTAGE
PARALLEL_QUEUE_TIMEOUT
PARALLEL_DEGREE_LIMIT_P1
See Also:
"Example of Managing Parallel Statements Using Directive Attributes" for more information about the combined use of all the parallel server directive attributesAlthough parallel server usage is monitored for all sessions, the parallel server directive attributes you set affect only sessions for which parallel statement queuing is enabled (PARALLEL_DEGREE_POLICY
is set to AUTO
). If a session has the PARALLEL_DEGREE_POLICY
set to MANUAL
, parallel statements from this session are not queued. However, any parallel servers used by such sessions are included in the count that is used to determine the limit for PARALLEL_TARGET_PERCENTAGE
. Even if this limit is exceeded, parallel statements from this session are not queued.
This method enables you to control resource allocation by specifying criteria that, if met, causes the automatic switching of a session to a specified consumer group. Typically, this method is used to switch a session from a high-priority consumer group—one that receives a high proportion of system resources—to a lower priority consumer group because that session exceeded the expected resource consumption for a typical session in the group.
See "Specifying Automatic Switching by Setting Resource Limits" for more information.
You can also specify directives to cancel long-running SQL queries or to terminate long-running sessions based on the amount of system resources consumed. See "Specifying Automatic Switching by Setting Resource Limits" for more information.
You can specify a maximum execution time allowed for an operation. If the database estimates that an operation will run longer than the specified maximum execution time, then the operation is terminated with an error. This error can be trapped and the operation rescheduled.
You can specify an undo pool for each consumer group. An undo pool controls the total amount of undo for uncommitted transactions that can be generated by a consumer group. When the total undo generated by a consumer group exceeds its undo limit, the current DML statement generating the undo is terminated. No other members of the consumer group can perform further data manipulation until undo space is freed from the pool.
You can specify an amount of time that a session can be idle, after which it is terminated. You can also specify a more stringent idle time limit that applies to sessions that are idle and blocking other sessions.
You must have the system privilege ADMINISTER_RESOURCE_MANAGER
to administer the Resource Manager. This privilege (with the ADMIN
option) is granted to database administrators through the DBA
role.
Being an administrator for the Resource Manager enables you to execute all of the procedures in the DBMS_RESOURCE_MANAGER
PL/SQL package.
You may, as an administrator with the ADMIN
option, choose to grant the administrative privilege to other users or roles. To do so, use the DBMS_RESOURCE_MANAGER_PRIVS
PL/SQL package. The relevant package procedures are listed in the following table.
Procedure | Description |
---|---|
GRANT_SYSTEM_PRIVILEGE |
Grants the ADMINISTER_RESOURCE_MANAGER system privilege to a user or role. |
REVOKE_SYSTEM_PRIVILEGE |
Revokes the ADMINISTER_RESOURCE_MANAGER system privilege from a user or role. |
The following PL/SQL block grants the administrative privilege to user HR
, but does not grant HR
the ADMIN
option. Therefore, HR
can execute all of the procedures in the DBMS_RESOURCE_MANAGER
package, but HR
cannot use the GRANT_SYSTEM_PRIVILEGE
procedure to grant the administrative privilege to others.
BEGIN DBMS_RESOURCE_MANAGER_PRIVS.GRANT_SYSTEM_PRIVILEGE( GRANTEE_NAME => 'HR', PRIVILEGE_NAME => 'ADMINISTER_RESOURCE_MANAGER', ADMIN_OPTION => FALSE); END; /
You can revoke this privilege using the REVOKE_SYSTEM_PRVILEGE
procedure.
Note:
TheADMINISTER_RESOURCE_MANAGER
system privilege can only be granted or revoked using the DBMS_RESOURCE_MANAGER_PRIVS
package. It cannot be granted or revoked through the SQL GRANT
or REVOKE
statements.See Also:
Oracle Database PL/SQL Packages and Types Reference. contains detailed information about the Resource Manager packages:DBMS_RESOURCE_MANAGER
DBMS_RESOURCE_MANAGER_PRIVS