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

本站中文解释

Oracle视图DBA_OGG_AUTO_CAPTURED_TABLES用于返回OGG自动捕获过程中记录的当前正在使用的捕获记录的表的列表。该视图可用于检查捕获过程是否捕获了预期的表,并用于帮助确定捕获表是否丢失。

要使用这个视图,只需运行SELECT * FROM DBA_OGG_AUTO_CAPTURED_TABLES语句。该语句将会返回包含以下列的一个表:SCHEMA_NAME、TABLE_NAME、IS_CAPTURED和CAPTURE_NAME。SCHEMA_NAME和TABLE_NAME列组合起来,将给出捕获的表的完整名称,而IS_CAPTURED列将显示捕获过程是否当前正在处理该表,并且CAPTURE_NAME列将显示捕获过程的名称。

官方英文解释

DBA_OGG_AUTO_CAPTURED_TABLES describes all tables in the database that are enabled for Oracle GoldenGate automatic capture.

Related View

USER_OGG_AUTO_CAPTURED_TABLES describes the tables owned by the current user that are enabled for Oracle GoldenGate automatic capture. This view does not display the OWNER column.

Column Datatype NULL Description

OWNER

VARCHAR2(128)

NOT NULL

Owner of the table

NAME

VARCHAR2(128)

NOT NULL

Name of the table

ALLOW_NOVALIDATE_PK

VARCHAR2(3)

Indicates whether a primary key constraint in NOVALIDATE mode can be used as a unique identifier for the table (YES) or not (NO)

Note:

This view is available starting with Oracle Database 21c.

See Also:

“USER_OGG_AUTO_CAPTURED_TABLES”


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