cannot flashback the table because row movement

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

做FLASHBACK 实验:
delete table xxx;
commit;
准备使用flashback
table scott.test20100815 to scn 11012398;然后报错:
ORA-08189: cannot
flashback the table because row movement is not enabled
解决方法:
SQL>ALTER TABLE
scott.test20100815 ENABLE ROW MOVEMENT
SQL>flashback
table scott.test20100815 to scn 11012398;
Flashback
complete.


你可能感兴趣的:(table,row,flashback,cannot,movement,is,the,not,because,enabled)