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

本站中文解释

S

Oracle的视图DBA_UMF_LINKS用来描述安装在当前数据库中的消息服务(MS)安装和有关联的统一消息过滤(UMF)链接。它在Oracle Database 10g及以上中存在。

DBA_UMF_LINKS显示所有MS链接,并显示每个链接的状态。它还显示是否有一个UMF链接被安装在当前数据库中以及哪个链接正在运行中。

可以使用以下SQL查询语句从DBA_UMF_LINKS视图中检索数据:

SELECT owner, link_name, type, status FROM dba_umf_links;

这条查询语句将返回所有MS和UMF链接的所有者、链接名称、类型和状态信息。

官方英文解释

DBA_UMF_LINK displays information about the registered database links 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 database links 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 link

FROM_NODE_ID

NUMBER

NOT NULL

Node ID of the local node

TO_NODE_ID

NUMBER

NOT NULL

Node ID of the remote node

LINK_NAME

VARCHAR2(128)

NOT NULL

Fully qualified database link name

See Also:

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


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