当前位置:网站首页>Oracle update error operation single table rollback
Oracle update error operation single table rollback
2022-08-02 13:01:00 【write whatever,】
When updating, the parameter field name is wrongly written, resulting in a form error. The following methods can be used to restore the table
1. Query the table before the wrong operation
select * from table_name as of timestamp to_timestamp('2022-07-26 17:20:00', 'yyyy-mm-dd hh24:mi:ss');2. Turn on the flashback function
alter table table_name enable row movement;3. Rollback table
flashback table table_name to timestamp to_timestamp('2022-07-26 17:20:51','yyyy-mm-dd hh24:mi:ss');边栏推荐
- 设置代理服务器(谷歌+IE)「建议收藏」
- SQL Server 2014 installation tutorial (nanny-level graphic tutorial)
- OpenFeign设置header的3种方式
- photo-sphere-viewer中文文档
- 30行代码实现无服务器实时健康码识别--操作手册
- 图论之Kruskal,最小生成树如何优雅解题?
- js真3d柱状图插件
- Intelligent Image Analysis-Intelligent Home Appliance Image Target Detection Statistical Counting Detection and Recognition-iCREDIT
- How to turn off hardware acceleration [easy to understand]
- FreeRTOS experiment--one function creates multiple tasks
猜你喜欢
随机推荐
Wireless vibrating wire acquisition instrument remote modification method
SQL Server database generation and execution of SQL scripts
设置代理服务器(谷歌+IE)「建议收藏」
linux basic command explanation
WPF——自定义日历
瀑布流式布局怎么实现(什么是瀑布流布局)
Article 48 - Analysis of timestamp2 parameters【2022-08-01】
svg气球升起爆炸js特效
LeetCode_139_单词拆分
js半圆环加载进度动画js特效
Taurus.MVC V3.0.3 microservice open source framework released: Make the evolution of .NET architecture easier in large concurrency.
zabbix自动化监控脚本
最小割和对偶图(未完成)
liunx基础命令讲解
php字符串的截取方式
Ribbon负载均衡的深度分析和使用
网络流详解(流网图一般能够反映什么信息)
Basic operations of openGauss database (super detailed)
汉源高科千兆12光12电管理型工业以太网交换机 12千兆光12千兆电口宽温环网交换机
Name conventions in FreeRTOS








