ORACLE清空回收站操作
Posted jiajunp
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ORACLE清空回收站操作相关的知识,希望对你有一定的参考价值。
ORACLE清空回收站操作
a、查看那些对象被删除至回收站
select * from user_recyclebin;
b、清空回收站中的某个表
purge table orgin_table_name;
purge index orgin_index_name;
c、清空整个回收站
purge recycle;
d、删除表不进入回收站
drop table table_name purge;
e、从回收站恢复被删除的表
flashback table table_name to before drop
f、从回收站灰复被删除的表并重命名
flashback table table_name to before drop rename to other_table_name
以上是关于ORACLE清空回收站操作的主要内容,如果未能解决你的问题,请参考以下文章