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

本站中文解释

Oracle 视图DBA_RGROUP被用作描述资源组的信息,其中包括了资源组名和其关联的参数,如CPU_COUNT和CPU_COUNT_CALLBACK。

使用此视图,用户可以检索有关资源组状态、可用资源组数量及资源组与特定会话关联的信息。用户还可以使用此视图检索与系统请求(称为资源请求)相关的属性,比如可用资源数量等,以及一些其他信息,比如资源请求的最高优先级等。

要使用此视图可以使用下面的查询:

SELECT * FROM DBA_RGROUP;

本查询将显示数据库中所有资源组的信息,包括组名、参数等。

用户还可以使用此视图来按具体的条件过滤出一组相关的资源组条目。例如,以下查询将返回大于10的资源请求的名称:

SELECT RG_NAME
FROM DBA_RGROUP
WHERE CPU_COUNT > 10;

此查询将只列出那些资源请求的名称,而不显示其他所有受支持的字段。

官方英文解释

DBA_RGROUP displays all refresh groups.

Column Datatype NULL Description

REFGROUP

NUMBER

Internal identifier of the refresh group

OWNER

VARCHAR2(128)

NOT NULL

Owner of the object in the refresh group

NAME

VARCHAR2(128)

NOT NULL

Name of the object in the refresh group

IMPLICIT_DESTROY

VARCHAR2(1)

Indicates whether the refresh group is destroyed when its last item is removed (Y) or not (N)

PUSH_DEFERRED_RPC

VARCHAR2(1)

Indicates whether changes are pushed from the snapshot to the master before refresh (Y) or not (N)

REFRESH_AFTER_ERRORS

VARCHAR2(1)

Indicates whether to proceed with refresh despite errors when pushing deferred RPCs (Y) or not (N)

ROLLBACK_SEG

VARCHAR2(128)

Name of the rollback segment to use while refreshing

JOB

NUMBER

NOT NULL

Identifier of the job used to refresh the group automatically

PURGE_OPTION

NUMBER(38)

Method for purging the transaction queue after each push. 1 indicates quick purge option; 2 indicates precise purge option

PARALLELISM

NUMBER(38)

Level of parallelism for transaction propagation

HEAP_SIZE

NUMBER(38)

Size of the heap

JOB_NAME

VARCHAR2(128)

The name of the job used to automatically refresh the group


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