oracle drop删除表后,闪回功能试验
conn scott/tiger
select * from tab;
drop table emp;
select * from tab;
select * from recyclebin;
flashback table emp to before drop;
conn scott/tiger
select * from tab;
drop table emp;
select * from tab;
select * from recyclebin;
flashback table emp to before drop;