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

本站中文解释

Oracle视图ALL_SYNC_CAPTURE_PREPARED_TABS显示网络导出所有在预捕获模式将网络中传输的表和索引,用于创建复制版本。

用途: ALL_SYNC_CAPTURE_PREPARED_TABS视图用于监控Network Capture服务,检查哪些表被网络中传输、哪些表和索引准备了用于创建复制版本。

使用方法:

1.首先,我们可以使用之前网络捕获服务功能上一次传输的表和索引来查询ALL_SYNC_CAPTURE_PREPARED_TABS视图:

SELECT * FROM ALL_SYNC_CAPTURE_PREPARED_TABS;

2.可以根据表名而不是循环指针,检索Network Capture的表和索引:

SELECT * FROM ALL_SYNC_CAPTURE_PREPARED_TABS WHERE TABLE_NAME='[table_name]’;

官方英文解释

ALL_SYNC_CAPTURE_PREPARED_TABS displays information about the tables accessible to the current user that are prepared for synchronous capture instantiation.

Related View

DBA_SYNC_CAPTURE_PREPARED_TABS displays information about all tables in the database that are prepared for synchronous capture instantiation.

Column Datatype NULL Description

TABLE_OWNER

VARCHAR2(128)

NOT NULL

Owner of the table prepared for synchronous capture instantiation

TABLE_NAME

VARCHAR2(128)

NOT NULL

Name of the table prepared for synchronous capture instantiation

SCN

NUMBER

NOT NULL

SCN from which changes can be captured

TIMESTAMP

DATE

Time at which the table was ready to be instantiated

See Also:

“DBA_SYNC_CAPTURE_PREPARED_TABS”


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