您的位置:首页 > 其它

闪回命令出错 ORA-08189: cannot flashback the table because row movement is not enabled

2011-02-17 21:26 399 查看
test@ORCL>flashback table t to scn:scn
2 ;
flashback table t to scn:scn
*
ERROR at line 1:
ORA-08189: cannot flashback the table because row movement is not enabled

使用闪回命令出错

test@ORCL>select row_movement from user_tables where table_name='T';

ROW_MOVE
--------
DISABLED

表行迁移开关未打开

test@ORCL>alter table t enable row movement;

Table altered.

开启行迁移

test@ORCL>flashback table t to scn:scn;

Flashback complete.

闪回成功
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐