数据库
首页 > 数据库> > Oracle表数据或结构误删还原

Oracle表数据或结构误删还原

作者:互联网

数据误删

表结构没有发生改变

--开启表字段转移,不开启无法还原
alter table 表名 enable row movement;
--数据闪回
flashback table 表名 to timestamp to_timestamp('2021-07-21 12:00:00','yyyy-mm-dd hh24:mi:ss');

表结构误删

--查询这个“回收站”或者查询user_table视图来查找已被删除的表
select table_name,dropped from user_tables;
select object_name,original_name,type,droptime from user_recyclebin;
--如果还能记住表名,则可以用下面语句直接恢复:
flashback table 原表名 to before drop;
--如果记不住了,也可以直接使用回收站的表名进行恢复,然后再重命名,参照以下语句
flashback table "Bin$DSbdfd4rdfdfdfegdfsf==$0" to before drop rename to 新表名;

参考

oracle误删表解决方案

标签:--,误删,还原,表名,Oracle,table,flashback,user
来源: https://www.cnblogs.com/hr0552/p/15040094.html