文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>ORA-08189: cannot flashback the t..

ORA-08189: cannot flashback the t..

时间:2010-09-26  来源:todayboy

SQL> flashback table a TO TIMESTAMP SYSTIMESTAMP - INTERVAL '2' MINUTE;
flashback table a TO TIMESTAMP SYSTIMESTAMP - INTERVAL '2' MINUTE
                *
ERROR at line 1:
ORA-08189: cannot flashback the table because row movement is not enabled
 

查看表有没有启用 row movement :


15:58:17 SQL> select row_movement from user_tables where table_name='A';  

ROW_MOVE
--------
DISABLED

 

开启row movement:

15:58:23 SQL> alter table a enable row movement;

Table altered.

15:59:53 SQL> select row_movement from user_tables where table_name='A';

ROW_MOVE
--------
ENABLED

 

禁用 row movement:

16:01:03 SQL> alter table a disable row movement;

Table altered.

16:02:28 SQL> select row_movement from user_tables where table_name='A';

ROW_MOVE
--------
DISABLED

16:04:51 SQL> flashback table a TO TIMESTAMP SYSTIMESTAMP - INTERVAL '5' minute;

Flashback complete.
 

 

 

 

 

 

 

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载