Oracle从回收站找回误删的数据

Step1

先根据删除时间查看删除了那些表

select * from recyclebin where type = 'TABLE' and createtime like '${删除时间}%' order by droptime asc, createtime asc;
-- 删除时间比如:2019-04-02:22:

Step2

执行以下命令恢复删除的数据

flashback table "BIN$ixA5i84aUcHgUAoK5WQ/VA==$0" to before drop;

在linux上oracle 11g亲测有效

posted @ 2020-08-12 23:36  周建林  阅读(430)  评论(0编辑  收藏  举报