oracle删除表垃圾

1,完全删除表:

  drop table 表名 purge;

2,删除表后永久删除-回收站表

  purge table 表名;

3,清空垃圾回收站

  purge recyclebin;

4, 查询所有此类表

  select * from recyclebin where type='table';

5, 用来闪回被删除的表

  flashback table 表名 to before drop;

6, 查看是否开启了闪回功能:
  select flashback_on from v$database;

原文地址:https://www.cnblogs.com/sunshinekevin/p/8119534.html