Oracle 恢复误删除表

recyclebin 是Oracle 10g + 里的回收站表 , delete drop 的动作基本都会在回收表里有记录..

可以同过以下语法闪回表

select 'FLASHBACK TABLE "' || object_name || '" TO BEFORE DROP; '
  from recyclebin
 where type = 'TABLE'
 

posted @ 2013-10-17 16:48  小猴纸  阅读(66)  评论(0)    收藏  举报