当前位置:网站首页>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');
边栏推荐
猜你喜欢
随机推荐
设置代理服务器(谷歌+IE)「建议收藏」
Import and export data of SQL Server database
瀑布流式布局怎么实现(什么是瀑布流布局)
Name conventions in FreeRTOS
To eliminate air bubbles to save the mushroom h5 small game source code
Taurus.MVC V3.0.3 Microservice Open Source Framework Released: Make the evolution of .NET architecture easier in large concurrency.
基础协议讲解
kvm部署
PGSQL database to realize the import and export
np.nan, np.isnan, None, pd.isnull, pd.isna 整理与小结
定了!2022世界VR产业大会将继续在南昌召开
3 ways for OpenFeign to set headers
Speed up your programs with bitwise operations
pgsql数据库实现导入导出
zabbix自动化监控脚本
FreeRTOS--优先级实验
A powerful js pop-up alert plugin
PHP+MYSQL【学生信息管理系统】(极简版)
Process finished with exit code 1
Intouch System Platform IDE-1








