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 DROPselect machine,count(*) from v$session group by machine