Oracle 视图 USER_FLASHBACK_TXN_REPORT 官方解释,作用,如何使用详细说明
本站中文解释
USER_FLASHBACK_TXN_REPORT是Oracle中可以查询事务回滚表,主要用于存放用户对事务回滚的操作过程记录,可以查询子表、视图以及数据库对象的信息及针对的DML操作的回滚结果,为DBA等查看事务的回滚过程和历史情况提供参考。
使用方法:
1、查询系统中的所有事务回滚表:
SELECT * FROM USER_FLASHBACK_TXN_REPORT;
2、通过特定条件查询系统中的事务回滚表:
SELECT * FROM USER_FLASHBACK_TXN_REPORT WHERE TABLE_NAME=’table_name’ AND ROW_ID=’row_id’;
官方英文解释
USER_FLASHBACK_TXN_REPORT
displays information about the compensating transactions owned by the current user that have been committed in the database. Its columns (except for USERNAME
) are the same as those in DBA_FLASHBACK_TXN_REPORT
.
See Also:
“DBA_FLASHBACK_TXN_REPORT”