Oracle 恢复误删除表
recyclebin 是Oracle 10g + 里的回收站表 , delete drop 的动作基本都会在回收表里有记录..
可以同过以下语法闪回表
select 'FLASHBACK TABLE "' || object_name || '" TO BEFORE DROP; '
from recyclebin
where type = 'TABLE'
recyclebin 是Oracle 10g + 里的回收站表 , delete drop 的动作基本都会在回收表里有记录..
可以同过以下语法闪回表
select 'FLASHBACK TABLE "' || object_name || '" TO BEFORE DROP; '
from recyclebin
where type = 'TABLE'