Oracle 视图 DBA_RSRC_CONSUMER_GROUPS 官方解释,作用,如何使用详细说明

本站中文解释

Oracle视图DBA_RSRC_CONSUMER_GROUPS显示通过Oracle Database Resource Manager创建的消费者组信息。这些消费者组能够按资源请求的优先级分配和处理数据库资源。

DBA_RSRC_CONSUMER_GROUPS查询返回的信息包括消费者组唯一标识符,消费者组名称,消费者组类型,可用的最大资源,父组ID和父组层次结构,以及描述该组的其他信息。

使用DBA_RSRC_CONSUMER_GROUPS查询时,可以指定某些参数,过滤查询结果。要查询特定消费者组,可以使用Consumer_Group_Name参数,该参数用于指定消费者组的名称。

另外,还可以使用Group_Type参数,该参数用于指定消费者组的类型。Group_Type可以取以下值:

– DEFAULT:指定默认消费者组;
– EXISTING:指定现有的消费者组;
– ALL:指定所有消费者组。

官方英文解释

DBA_RSRC_CONSUMER_GROUPS displays information about all resource consumer groups in the database.

Column Datatype NULL Description

CONSUMER_GROUP_ID

NUMBER

NOT NULL

ID of the consumer group

CONSUMER_GROUP

VARCHAR2(128)

Name of the consumer group

CPU_METHOD

VARCHAR2(128)

CPU resource allocation method for the consumer group

MGMT_METHOD

VARCHAR2(128)

Resource allocation method for the consumer group

INTERNAL_USE

VARCHAR2(3)

Indicates whether the consumer group is for internal use only (YES) or not (NO)

COMMENTS

VARCHAR2(2000)

Text comment on the consumer group

CATEGORY

VARCHAR2(128)

Category of the consumer group

STATUS

VARCHAR2(128)

Indicates whether the consumer group is part of the pending area (PENDING) or not (NULL)

MANDATORY

VARCHAR2(3)

Indicates whether the consumer group is mandatory (YES) or not (NO)


数据运维技术 » Oracle 视图 DBA_RSRC_CONSUMER_GROUPS 官方解释,作用,如何使用详细说明