当前位置:网站首页>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调度策略:亲和性、污点与污点容忍
- Distributed current limiting, hand & redisson implementation
- FreeRTOS creation tasks - dynamic creation, static creation
- 基础协议讲解
- FreeRTOS实验--删除任务
- 路由-嵌套路由
- Js scratchable latex style draw plug-in
- LeetCode_377_组合总和Ⅳ
- Taurus.MVC V3.0.3 Microservice Open Source Framework Released: Make the evolution of .NET architecture easier in large concurrency.
- WPF——自定义日历
猜你喜欢
随机推荐
js半圆环加载进度动画js特效
FreeRTOS experiment -- delete task
Custom mvc framework review
图神经网络(GNN)的简介「建议收藏」
A powerful js pop-up alert plugin
【The 6th Strong Net Cup CTF-Wp】
js stopwatch countdown plugin
An example of type3 voltage loop compensator taking Boost as an example
#夏日挑战赛#【FFH】OpenHarmony设备开发基础(三)编译依赖
php - the first of three solid foundations
Four seasons of trees realized by svg
MFC入门教程(深入浅出MFC)
FreeRTOS experiment--one function creates multiple tasks
To eliminate air bubbles to save the mushroom h5 small game source code
js cool dashboard plugin
分享一个Chrome控制台数据获取的例子
sql concat() function
Js scratchable latex style draw plug-in
Introduction to Graph Neural Networks (GNN) "Recommended Collection"
FreeRTOS creation tasks - dynamic creation, static creation









