1
SQL> flashback table ticket to timestamp TO_TIMESTAMP('13-11-2018 22:30:56', 
                                                      'dd-mm-yyyy hh24:mi:ss');
flashback table ticket to timestamp TO_TIMESTAMP('13-11-2018 22:30:56', 
            *                                    'dd-mm-yyyy hh24:mi:ss')

第 1 行的错误

ORA-00604:递归 SQL 级别 1 发生错误

ORA-01031:权限不足

PS:我已经添加了flashback any table系统权限。

4

1 回答 1

0

很可能您有一个触发器,例如after eventtype ,其中包含一些阻止您执行与它们相关的命令行操作的操作。尝试禁用这些触发器,然后重试flashback table ...

要检测障碍物,请使用:

select owner, trigger_name
  from user_triggers -- for current schema, might be replaced with "dba_triggers" for the whole
 where trigger_type = 'AFTER EVENT';
于 2018-11-19T08:14:34.587 回答