oracle drop删除表后,闪回功能试验

conn  scott/tiger

select  *   from  tab;

drop  table  emp;

select  *  from tab;

select  *  from recyclebin;

flashback table  emp to before drop;

你可能感兴趣的:(oracle,BEFORE)