iis服务器助手广告
返回顶部
首页 > 资讯 > 错误编码 >ORA-08189: cannot flashback the table because row movement is not enabled ORACLE 报错 故障修复 远程处理
  • 498
分享到

ORA-08189: cannot flashback the table because row movement is not enabled ORACLE 报错 故障修复 远程处理

报错故障flashback 2023-11-05 06:11:14 498人浏览 安东尼
摘要

文档解释 ORA-08189: cannot flashback the table because row movement is not enabled Cause: An attempt was made to perfORM Fla

文档解释

ORA-08189: cannot flashback the table because row movement is not enabled

Cause: An attempt was made to perfORM Flashback Table operation on a table for which row movement has not been enabled. Because the Flashback Table does not preserve the rowids, it is necessary that row movement be enabled on the table.

Action: Enable row movement on the table

ORA-08189意味着在闪回表之前,需要将表上的行运动功能启用,因此,必须启用行运动才能够进行表的闪回。

官方解释

ORA-08189表明未启用行运动,因此不能闪回表。在启用行运动之前,你必须先启用表上的行内运动,像这样:

ALTER TABLE your_table ENABLE ROW MOVEMENT;

常见案例

当创建表时,将“ENABLE ROW MOVEMENT”选项设置为禁用状态,然后将表定义为COMPRESSED状态,就可能会导致ORA-08189错误。

正常处理方法及步骤

1、将表的ENABLE ROW MOVEMENT选项重新设置为启用状态:

ALTER TABLE person ENABLE ROW MOVEMENT;

2、然后删除表的索引

3、重新创建已删除的索引

4、设置表的COMPRESS属性

ALTER TABLE person COMPRESS FOR QUERY LOW;

--结束END--

本文标题: ORA-08189: cannot flashback the table because row movement is not enabled ORACLE 报错 故障修复 远程处理

本文链接: https://www.lsjlt.com/news/535576.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作