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

本站中文解释

DBA_UMF_REGISTRATION是Oracle中的表视图,用于显示通过UMF(Unified Monitoring Framework)控制台注册的所有数据库实例的信息。此视图的列分别是:

1.DOMAIN_NAME:数据库实例所属的UMF域的名称。
2.SERVER_NAME:数据库实例运行的服务器的名称。
3.UMF_DB_NAME:数据库实例连接到UMF控制台的数据库名称。
4.UMF_USER_NAME:以umf用户身份连接UMF控制台的用户名。
5.RGM_REDIRECT:指定数据库实例是否使用了适当的协议重定向,以将UMF对对象的调用重定向到RGM(重定位管理器)。

使用方式:

可以使用SELECT语句与此视图一起查询,来获取有关注册的数据库实例的信息。例如,以下查询会显示所有注册的数据库实例的信息。

SELECT * FROM dba_umf_registration;

官方英文解释

DBA_UMF_REGISTRATION displays information about the registered nodes in the Remote Management Framework (RMF).

This view returns no rows if you are querying on an RMF source node. It returns all the registered nodes in the topology if you are querying on a target node.

Column Datatype NULL Description

TOPOLOGY_NAME

VARCHAR2(128)

NOT NULL

Topology name for the node

NODE_NAME

VARCHAR2(128)

NOT NULL

Unique node name in the topology

NODE_ID

NUMBER

NOT NULL

Unique node ID in the topology

NODE_TYPE

NUMBER

NOT NULL

Node type. Possible value:

  • 0: RDBMS node

AS_SOURCE

VARCHAR2(5)

Indicates whether the node is a source node. Possible values:

  • TRUE: The node is a source node, and it can provide remote services

  • FALSE: The node is not a source node, and it cannot provide remote services

AS_CANDIDATE_TARGET

VARCHAR2(5)

Node is a candidate target. Possible values:

  • TRUE: Node can be promoted to target role

  • FALSE: Node cannot be promoted to target role

STATE

VARCHAR2(20)

Current state of the node. Possible values:

  • OK: Node is registered

  • REGISTRATION_PENDING: Node registration has started, but has not been completed

  • SYNC_FAILED: Unable to synchronize the topology with the node

See Also:

Oracle Database
Performance Tuning Guide
for information about configuring the Remote Management Framework (RMF) architecture


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