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

本站中文解释

Oracle视图V$CONFIGURED_INTERCONNECTS保存着计算机系统中当前设置的网络连接(包括非Oracle网络)的相关信息,比如主机名、子网掩码,以及它们之间的通讯协议等。

使用这个视图来检查系统中当前设置的网络连接信息,以确定系统是否正确配置。此外,它也可用于检查网络连接的健康状况,即是否因发生错误而中止运行。

通过以下SQL语句可以从系统中查询到当前设置的网络连接信息:

SELECT * FROM V$CONFIGURED_INTERCONNECTS;

官方英文解释

V$CONFIGURED_INTERCONNECTS displays all the interconnects that Oracle is aware of. This view attempts to answer the question of where Oracle found the information about a specific interconnect.

Column Datatype Description

NAME

VARCHAR2(15)

Name of the interconnect (such as eth0)

IP_ADDRESS

VARCHAR2(64)

IP address of the interconnect

IS_PUBLIC

VARCHAR2(3)

If the value is YES, the interface is known to the public.

If the value is NO, the interface is known to be private. Note that if the CLUSTER_INTERCONNECTS initialization parameter is also specified, then it is expected that the interconnect is private. Oracle expects cluster traffic to be run on private interconnects only.

If the value is empty, it is unknown whether the interface is public or private.

Oracle recommends that you set the interface for Oracle Real Application Clusters (Oracle RAC) communication in the Oracle Cluster Registry (OCR).

SOURCE

VARCHAR2(31)

Indicates where this interface was picked up from:

  • Oracle Cluster Registry – Interface was configured in the OCR and Oracle Database found the interface in the OCR

  • Operating-system dependent software – Oracle Database automatically detects this

  • CLUSTER_INTERCONNECTS parameter – This initialization parameter was set

CON_ID

NUMBER

The ID of the container to which the data pertains. Possible values include:

  • 0: This value is used for rows containing data that pertain to the entire CDB. This value is also used for rows in non-CDBs.

  • 1: This value is used for rows containing data that pertain to only the root

  • n: Where n is the applicable container ID for the rows containing data


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