plsqldeveloper编译好了的触发器,也执行了,再次编辑后发现少了一半代码,什么问题

2024-11-02 09:16:02
推荐回答(1个)
回答1:

使用SCN进行恢复
查询当天SCN
SQL> select dbms_flashback.get_system_change_number from dual;
查询当前SCN前面的表信息
SQL> select count(*) from test as of scn 10010078;
之后就是把那时查到的表备份到一个新表,使用新表替换旧表
SQL> create table test1 as select * from test as of scn 10010078;