Oracle 视图 ALL_SYNC_CAPTURE_TABLES 官方解释,作用,如何使用详细说明
本站中文解释
G
Oracle视图ALL_SYNC_CAPTURE_TABLES是\_SYNC\_CAPTURE\_TABLE系统权限可见视图。它可以用来查看存在”流同步捕获”活动的Oracle表。这些活动可以用来使用Oracle GoldenGate等异构数据服务器产品同步和更新数据,从而实现异构数据库环境的数据同步。
这个ALL_SYNC_CAPTURE_TABLES视图包含五条记录,分别是:
OWNER:表的拥有者名字。
TABLE_NAME:进行”流同步捕获”的表的名字。
CONFIG_ID:用来把整个捕获组捆绑的唯一标识符。
COMMIT_CONFIRM:用来指明事务是否可以被确认的模式。
COMMIT_CONFIRM可以有多种样子,比如普通事务消息模式,“延迟确认”模式,以及几种特殊的消息模式。
可以使用ALL_SYNC_CAPTURE_TABLES视图来查看特定拥有者下进行“流同步捕获”活动的所有表,通过:SELECT * FROM ALL_SYNC_CAPTURE_TABLES WHERE OWNER=” 来实现查看具体信息,其中代表拥有者名。
官方英文解释
ALL_SYNC_CAPTURE_TABLES
displays information about the tables accessible to the current user that are captured by synchronous captures.
Related View
DBA_SYNC_CAPTURE_TABLES
displays information about all tables in the database that are captured by synchronous captures.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
Owner of the synchronous capture table |
|
|
|
Name of the synchronous capture table |
|
|
|
Indicates whether synchronous capture is enabled for the table ( |
See Also:
“DBA_SYNC_CAPTURE_TABLES”