Oracle 11g 閃回表
--當前資料 scott@TESTDB11>select * from dept;
DEPTNO DNAME LOC ---------- -------------- ------------- 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS LocG
--在SCN=2530398時的歷史資料 scott@TESTDB11>select * from dept as of scn 2530398;
DEPTNO DNAME LOC ---------- -------------- ------------- 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS BOSTON
--使表資料閃回到scn 2530398; scott@TESTDB11>flashback table dept to scn 2530398; flashback table dept to scn 2530398 * ERROR at line 1: ORA-08189: cannot flashback the table because row movement is not enabled
--允許在資料移動的時候更改rowid scott@TESTDB11>alter table dept enable row movement;
Table altered.
scott@TESTDB11>flashback table dept to scn 2530398; flashback table dept to scn 2530398 * ERROR at line 1: ORA-00604: error occurred at recursive SQL level 1 ORA-25153: Temporary Tablespace is Empty
--確定SCOTT使用者使用的臨時表空間 sys@TESTDB11>select temporary_tablespace from dba_users where username = 'SCOTT';
TEMPORARY_TABLESPACE ------------------------------ TEMP
sys@TESTDB11>alter tablespace temp add tempfile '/oradata/temp01.dbf' size 500m;
Tablespace altered.
scott@TESTDB11>flashback table dept to scn 2530398;
Flashback complete.
--閃回到最早的狀態 scott@TESTDB11>select * from dept;
DEPTNO DNAME LOC ---------- -------------- ------------- 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS BOSTON |
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/17013648/viewspace-1153861/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle 11G 閃回技術 使用Oracle閃回查詢Oracle
- Oracle 11g 閃回刪除Oracle
- Oracle 11g 閃回查詢Oracle
- Oracle 11G 閃回技術 使用閃回版本查詢Oracle
- Oracle 11g 閃回資料庫Oracle資料庫
- Oracle 11g 閃回版本查詢Oracle
- Oracle閃回誤刪的表Oracle
- 閃回表、閃回查詢
- Oracle 11G 閃回技術 閃回版本查詢和閃回事務查詢Oracle
- Oracle 11G 閃回技術 使用Oracle閃回事務查詢Oracle
- Oracle 11g開啟閃回功能FlashbackOracle
- Oracle 11G 閃回技術概覽Oracle
- Oracle Database 11g閃回技術flashbackOracleDatabase
- Oracle 11g 閃回資料歸檔Oracle
- 閃回技術二:閃回表
- Oracle 閃回刪除表原理分析Oracle
- [zt] Oracle 11g 閃回資料歸檔Oracle
- 基本閃回查詢和閃回表
- oracle閃回Oracle
- oracle 閃回Oracle
- Oracle 10G 新特性——閃回表Oracle 10g
- 11g新特性--Oracle 11g 閃回資料歸檔Oracle
- 閃回查詢之閃回表查詢
- oracle 閃回 flashbackOracle
- oracle閃回特性Oracle
- Oracle回收站表閃回機制研究Oracle
- Oracle Database 10g新特性-閃回表OracleDatabase
- 閃回表技術
- Oracle閃回技術 為Oracle閃回配置資料庫Oracle資料庫
- Oracle閃回技術之閃回資料庫Oracle資料庫
- oracle閃回查詢Oracle
- Oracle閃回刪除Oracle
- Oracle閃回詳解Oracle
- 清空 oracle 閃回區Oracle
- Oracle 之 閃回操作Oracle
- oracle 閃回查詢Oracle
- Oracle 11g閃回資料歸檔新功能解析Oracle
- (f)--閃回恢復區---實踐2---閃回表(閃回DML部分資料會用到閃回查詢)