oracle 表删除与表的回收站

--清空回收站的表
purge table user_table;
purge table company;

--查询回收站表的信息
SELECT t.object_name,t.type ,t.original_name FROM user_recyclebin t;
--删除表不进入回收站
drop table company_info purge;
--还原回收站的表
FLASHBACK TABLE company_info TO BEFORE DROP




select machine,count(*) from v$session group by machine

猜你喜欢

转载自hehaibo.iteye.com/blog/1321966