博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ORA-08189: cannot flashback the table because row movement is not enabled.
阅读量:5326 次
发布时间:2019-06-14

本文共 482 字,大约阅读时间需要 1 分钟。

注意:表闪回可在直接在open状态下操作

scn查找某一点的SCN:select timestamp_to_scn(to_timestamp('2012-12-30 10:36:14:477501','yyyy-mm-dd hh24:mi:ss:ff')) from dual;
获取当前的SCN:select systimestamp,timestamp_to_scn(sysdate) from dual; 
开始闪回:
flashback table table_name to scn scn_number;
报错error: ORA-08189: cannot flashback the table because row movement is not enabled.(ORA-08189: 因为未启用行移动功能, 不能闪回表。)
解决办法:
alter table table_name enable row movement;
再执行,操作完成。

转载于:https://www.cnblogs.com/Jace06/p/8808784.html

你可能感兴趣的文章
lua table 的操作(四)
查看>>
noip2010 引水入城
查看>>
抽象工厂模式(Abstract Factory)
查看>>
wp7 - 在Grid中实现元素叠加
查看>>
实验三
查看>>
mybatis源码阅读-初始化六个工具(六)
查看>>
利用伪造内核文件来绕过IceSword的检测
查看>>
IOS开发之记录用户登陆状态
查看>>
VB6 Win32API 函数声明
查看>>
jmeter ServerAgent插件安装
查看>>
JSP乱码解决 - 使用过滤器Filter
查看>>
leecode第三百四十四题(反转字符串)
查看>>
【Android 开发】TextView的跑马灯效果
查看>>
【POJ2417】baby step giant step
查看>>
硬盘打开NCQ功能
查看>>
TensorFlow之Varibale 使用方法
查看>>
python 读取邮件
查看>>
MyBatis批量添加、修改和删除
查看>>
jmeter-The JVM should have exitted but did not
查看>>
结对第二次
查看>>