oracle 清空回收站

参考官方文档

oracle 清空回收站_第1张图片

select *  from user_recyclebin;

select *  from dba_recyclebin;

---清除回收站中当前用户下的对象

purge  recyclebin;

---清除回收站中所有的对象

purge dba_recyclebin;

---清除回收站中指定用户的表

PURGE TABLE owner.table_name;

---清除回收站中指定表空间指定用户

purge tablespace  表空间名称 user 用户名;

你可能感兴趣的:(oracle,数据库)