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

本站中文解释

Oracle 视图DBA_APPLY_SPILL_TXN提供了对具有应用程序级消息传递的事务的信息。

DBA_APPLY_SPILL_TXN视图中的每一行表示一个具有应用程序级置换的Spill Transaction(SGTX)事务,并可用于查询Spill Transaction的状态,时间,字节大小等相关信息。

使用此视图,用户可以查询具有应用程序级消息传递的Spill Transaction,查看包括对象名称,时间,实际由事务控制的字节数等详细信息。

可以使用以下SELECT语句来查询Spill Transaction的当前状态:

SELECT * FROM DBA_APPLY_SPILL_TXN;

官方英文解释

DBA_APPLY_SPILL_TXN displays information about the transactions spilled from memory to hard disk by all apply processes in the database.

Column Datatype NULL Description

APPLY_NAME

VARCHAR2(128)

NOT NULL

Name of the apply process that spilled one or more transactions

XIDUSN

NUMBER

NOT NULL

Transaction ID undo segment number

XIDSLT

NUMBER

NOT NULL

Transaction ID slot number

XIDSQN

NUMBER

NOT NULL

Transaction ID sequence number

PDB_ID

NUMBER

PDB ID number

FIRST_SCN

NUMBER

NOT NULL

SCN of the first message in the transaction

MESSAGE_COUNT

NUMBER

Number of messages spilled for the transaction

FIRST_MESSAGE_CREATE_TIME

DATE

Source creation time of the first message in the transaction

SPILL_CREATION_TIME

DATE

Time the first message was spilled

FIRST_POSITION

RAW(64)

Position of the first message in this transaction. This column is populated only for an XStream inbound server.

TRANSACTION_ID

VARCHAR2(128)

Transaction ID of the spilled transaction


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