文档解释
ORA-08193: Flashback Table operation is not allowed on temporary tables
Cause: An attempt was made to perform Flashback Table operation on a temporary table. This is not permitted.
Action: Do not perform a Flashback Table operation on temporary tables.
1. 错误描述:ORA-08193:对临时表不允许执行Flashback Table操作
官方解释
常见案例
正常处理方法及步骤
(1) 把Flashback Table操作中的目标表换成非临时表,再次执行代码;
(2) 需要使用临时表时,可以结合Global Temporary表使用,但也需要明确时间范围,避免回滚过去太多时间;
(3) 其他可以采用读取二进制日志的方式恢复数据,详情请参考:https://docs.oracle.com/cd/B19306_01/backup.102/b14191/rcmrvdat.htm