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

本站中文解释

Oracle视图DBA_STREAMS_TP_COMPONENT用于查询和管理每个数据库中定义的流式复制传输映射组件。该视图包括:组件名称、条目及源语法等等。

使用案例:

如果要检查一个数据库中定义的某个传输映射组件的情况,可以查询DBA_STREAMS_TP_COMPONENT视图,查看其entry和source_syntax分别是什么。

例如:

SELECT entry, source_syntax
FROM DBA_STREAMS_TP_COMPONENT
WHERE component_name = ‘MY_COMPONENT’;

官方英文解释

DBA_STREAMS_TP_COMPONENT displays information about each Replication component at each database.

Column Datatype NULL Description

COMPONENT_ID

NUMBER

NOT NULL

ID of the Replication component

COMPONENT_NAME

VARCHAR2(4000)

Name of the Replication component

COMPONENT_DB

VARCHAR2(128)

Database where the Replication component resides

COMPONENT_TYPE

VARCHAR2(20)

Type of the Replication component:

  • CAPTURE

  • PROPAGATION SENDER

  • PROPAGATION RECEIVER

  • APPLY

  • QUEUE

COMPONENT_CHANGED_TIME

DATE

Time that the Replication component was last changed


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