今天在navicat中编写sql操作oracle数据库时进行了误操作,可以使用如下语句进行回退回滚,因为navicat是自动提交事务的,而rollback没法回滚。
oracle回退 --开启闪退 alter table TB_MENU_INFO enable row movement; --闪退到某个时间段 flashback table TB_MENU_INFO to timestamp TO_TIMESTAMP('2020-02-14 09:00:00', 'yyyy-mm-dd hh24:mi:ss'); --关闭回退 alter table TB_MENU_INFO disable row movement;
只需要回退到某个时间段即可。