[每日一题] 11gOCP 1z0-053 :2013-09-29 Flashback Data Archive
转载请注明出处:http://www.voidcn.com/article/p-whxmxfrb-dk.html 正确答案:A ? ? ?具体请参考:http://www.voidcn.com/article/p-bmajcgbz-dk.html ? ? ? ? ? ? Flashback Data Archive(闪回数据归档)
sys@MYDB> select * from dba_sys_privs where privilege like '%FLASH%'; GRANTEE PRIVILEGE ADM ------------------------------ ---------------------------------------- --- SYS FLASHBACK ANY TABLE NO DBA FLASHBACK ANY TABLE YES SYS FLASHBACK ARCHIVE ADMINISTER NO DBA FLASHBACK ARCHIVE ADMINISTER YES sys@MYDB> grant flashback archive administer to gyj; Grant succeeded. 2、创建表空间 sys@MYDB> create tablespace flash_tbs1 datafile '/u01/app/oracle/oradata/mydb/flash_tbs1.dbf' size 20480M; Tablespace created. 3、创建闪回归档 sys@MYDB> create flashback archive flash1 tablespace flash_tbs1 quota 1024M retention 5 year; Flashback archive created. 二、更改闪回数据归档 sys@MYDB> alter flashback archive flash1 set default;
Flashback archive altered.
sys@MYDB> alter flashback archive flash1 add tablespace tp1; --添加表空间
Flashback archive altered.
sys@MYDB> alter flashback archive flash1 remove tablespace tp1;--删除表空间
Flashback archive altered.
sys@MYDB> alter flashback archive flash1 modify tablespace flash_tbs1 quota 2048M;--添加配额
Flashback archive altered.
sys@MYDB> alter flashback archive flash1 modify retention 3 year;
Flashback archive altered.
sys@MYDB> alter flashback archive flash1 purge all; -- 清除所有
Flashback archive altered.
sys@MYDB> alter flashback archive flash1 purge before timestamp (systimestamp - interval '2' day);--清除2天前的
Flashback archive altered.
sys@MYDB> alter flashback archive flash1 purge before scn 123344;
Flashback archive altered.
QQ:252803295 技术交流QQ群: MAIL:dbathink@hotmail.com BLOG:?http://blog.csdn.net/guoyjoe WEIBO:http://weibo.com/guoyJoe0218 ITPUB:?http://www.itpub.net/space-uid-28460966.html OCM: ??http://education.oracle.com/education/otn/YGuo.HTM? (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |