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

本站中文解释

V$DB_PIPES视图是一个数据库视图,它用于显示基础结构内当前活动的管道。它在分布式处理环境中、使用管道机制时是很有用的,也可以用在普通数据库环境中。

V$DB_PIPES视图中各列的含义如下:

PIPE_HANDLE:指定管道的句柄。

PIPE_SIZE:指示管道的大小,以字节为单位。

PIPE_BUFFER_SIZE:指定管道缓冲区的大小,以字节为单位。

PIPE_MSG_SIZE:指定消息的最大大小,以字节为单位。

PIPE_LOGICAL_ADDRESS:指定给定管道的某个逻辑地址。

PIPE_PROTOCOL:指定管道使用的通信协议。

PIPE_PROTOCOL_CONTEXT:指定当前管道协议的上下文。

SYSDBA_NODE:指定用于连接到数据库所使用的节点列表。

USED_KSIZE:指示管道使用的K字大小。

使用V$DB_PIPES视图时,我们可以查询数据库中当前活动的管道,包括使用的协议、管道缓冲区大小、消息大小等信息。除此之外,还可以查询当前管道在数据库中的逻辑地址,以及用于连接到数据库的节点列表等。

官方英文解释

V$DB_PIPES displays the pipes that are currently represented in the shared pool for this instance.

Column Datatype Description

OWNERID

NUMBER

Owner ID of the owner (if this is a private pipe), else NULL

NAME

VARCHAR2(1000)

Name of the pipe (for example, SCOTT.PIPE)

TYPE

VARCHAR2(7)

Type of the pipe:

  • PUBLIC

  • PRIVATE

PIPE_SIZE

NUMBER

Amount of memory the pipe uses

Note: The value of this column may be larger than maxpipesize because of an internal algorithm.

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

CON_NAME

VARCHAR2(64)

Container name of the object. The value of this column is NULL in non-CDBs.


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