创建闪回数据归档

为闪回数据归档创建表空间:

SQL> create tablespace tomarch datafile '/oradata/test/tomarch01.dbf' size 10M;


Tablespace created.


在tomarch 表空间创建闪回数据归档:

SQL> create flashback archive default fbarch tablespace tomarch quota 10M retention 1 year;


Flashback archive created.


将T表添加到闪回数据归档fbarch 中:

SQL> alter table tom.t flashback archive;


Table altered.


SQL> 


你可能感兴趣的:(闪回数据归档)