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 |
---|---|---|---|
|
|
Internal identifier of the refresh group |
|
|
|
|
Owner of the object in the refresh group |
|
|
|
Name of the object in the refresh group |
|
|
Indicates whether the refresh group is destroyed when its last item is removed ( |
|
|
|
Indicates whether changes are pushed from the snapshot to the master before refresh ( |
|
|
|
Indicates whether to proceed with refresh despite errors when pushing deferred RPCs ( |
|
|
|
Name of the rollback segment to use while refreshing |
|
|
|
|
Identifier of the job used to refresh the group automatically |
|
|
Method for purging the transaction queue after each push. |
|
|
|
Level of parallelism for transaction propagation |
|
|
|
Size of the heap |
|
|
|
The name of the job used to automatically refresh the group |