Oracle 视图 V$LOGSTDBY_TRANSACTION 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图V$LOGSTDBY_TRANSACTION是数据库实例中流复制会话使用的一个动态性系统视图。它包括实例上活动注册的会话及实时复制/恢复操作执行的详细信息。此视图可显示复制会话中当前处理的操作步骤,以及步骤被处理之前的信息。
使用V$LOGSTDBY_TRANSACTION视图可以:
1、查看当前正在实时复制/恢复的操作的基本信息,包括操作的状态、用户名及操作的类型;
2、查看当前正在处理的事务及复制它的投影状态;
3、确定当前会话来着于何处,以及当前会话的连接模式;
4、使用该视图的START_SCN、STOP_SCN和SCN_RANGE来检查特定数据库版本下对应的事务范围,即需要从哪里开始,结束和它们之间的事务;
5、查看当前系统中复制会话,即用于传递改变将被应用到另一台数据库实例中的连接会话。
官方英文解释
V$LOGSTDBY_TRANSACTION
displays all transactions that are actively being processed by SQL Apply.
The transaction identifiers shown in this view are those mined from the redo stream and correspond to transaction identifiers assigned at the primary database, and do not correspond to the transactions that are active at the logical standby database. For information regarding transactions active in the logical standby database, including those created as part of SQL Apply, query the V$TRANSACTION
view at the logical standby database.
Column | Datatype | Description |
---|---|---|
|
|
Undo segment number of the transaction |
|
|
Slot number of the transaction |
|
|
Sequence number of the transaction |
|
|
Transaction ID |
|
|
Start system change number (SCN) base |
|
|
Start time |
|
|
Undo segment number of the parent transaction |
|
|
Slot number of the parent transaction |
|
|
Sequence number of the parent transaction |
|
|
Transaction ID of the parent transaction (PDML) |
|
|
Type:
|
|
|
Mining status:
|
|
|
Contains the PDB ID (the |
|
|
|
|
|
Session ID of the apply server’s session; Null if |
|
|
Serial number of the apply server’s session; Null if |
|
|
The ID of the container to which the data pertains. Possible values include:
|
See Also:
“V$TRANSACTION”