当前位置:网站首页>Oracle update误操作单表回滚
Oracle update误操作单表回滚
2022-08-02 12:49:00 【随便写写、】
update时,参数字段名称写错,导致表单错误,可以采用以下方法恢复
1、查询误操作之前的表
select * from table_name as of timestamp to_timestamp('2022-07-26 17:20:00', 'yyyy-mm-dd hh24:mi:ss');
2、开启闪回功能
alter table table_name enable row movement;
3、回滚表
flashback table table_name to timestamp to_timestamp('2022-07-26 17:20:51','yyyy-mm-dd hh24:mi:ss');
边栏推荐
- Pod Scheduling Strategy: Affinity, Stain and Stain Tolerance
- 用位运算为你的程序加速
- Data Lake (2): What is Hudi
- SQL Server 2014安装教程(保姆级图解教程)
- pytorch model to tensorflow model
- 数据湖(三):Hudi概念术语
- FreeRTOS experiment--one function creates multiple tasks
- Basic operations of openGauss database (super detailed)
- php字符串的截取方式
- How to turn off hardware acceleration [easy to understand]
猜你喜欢
随机推荐
TFRecord简介,原理分析,代码实现?[通俗易懂]
SQL Server 2019安装错误0x80004005 服务没有及时响应启动或控制请求详细解决方法
麻烦问一下,对mysql 场景注入故障,是不是不是对mysql server 端注入故障,只是对ja
Pod调度策略:亲和性、污点与污点容忍
Drools(8): WorkBench uses
第11章 文件
Openlayers Quick Start Tutorial
一款强大的js弹出alert插件
LeetCode_139_word split
js semi-circle loading progress animation js special effects
ssm access database data error
0801~面试题梳理
SQL Server如何建表
分布式限流利器,手撕&redisson实现
package.json与package-lock.json
Process finished with exit code 1
工厂方法模式
Import and export data of SQL Server database
【The 6th Strong Net Cup CTF-Wp】
FreeRTOS creation tasks - dynamic creation, static creation









