Oracle 11g 閃回查詢
scott@TESTDB11>select * from dept;
DEPTNO DNAME LOC ---------- -------------- ------------- 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS BOSTON
--確定系統當前SCN sys@TESTDB11>select current_scn from v$database;
CURRENT_SCN ----------- 2530398
1 row selected.
--更新表 scott@TESTDB11>update dept set loc='LocD' where deptno = 40;
1 row updated.
scott@TESTDB11>commit;
Commit complete.
--使用SCN檢視資料的歷史狀態(使用undo資料) 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
--使用時間檢視資料的歷史狀態 scott@TESTDB11>select * from dept as of timestamp (systimestamp - 5/(24*60));
DEPTNO DNAME LOC ---------- -------------- ------------- 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS LocD
scott@TESTDB11>select * from dept as of timestamp (systimestamp - 10/(24*60));
DEPTNO DNAME LOC ---------- -------------- ------------- 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS BOSTON
--使用時間間隔來指定時間 scott@TESTDB11>select * from dept as of timestamp (systimestamp - interval '150' minute);
DEPTNO DNAME LOC ---------- -------------- ------------- 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS BOSTON |
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/17013648/viewspace-1153858/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle 11G 閃回技術 閃回版本查詢和閃回事務查詢Oracle
- Oracle 11G 閃回技術 使用Oracle閃回事務查詢Oracle
- DM7閃回與閃回查詢
- DM8 閃回查詢
- Oracle閃回技術 為Oracle閃回配置資料庫Oracle資料庫
- Oracle資料庫閃回Oracle資料庫
- Oracle查詢回滾大事務所需時間Oracle
- 【RECO_ORACLE】Oracle閃回PDB的方法Oracle
- Oracle 查詢Oracle
- Oracle閃回技術--Flashback Version QueryOracle
- Oracle 閃回資料庫測試Oracle資料庫
- 【PDB】pdb閃回,Oracle還原點Oracle
- 詳解oracle資料庫閃回Oracle資料庫
- Oracle psu查詢Oracle
- oracle 基本查詢Oracle
- oracle常用查詢Oracle
- oracle 精確查詢和模糊查詢Oracle
- Oracle資料庫閃回區空間不足Oracle資料庫
- Oracle回收站表閃回機制研究Oracle
- Oracle-多表查詢Oracle
- oracle 連線查詢Oracle
- Oracle 查詢轉換Oracle
- oracle樹形查詢Oracle
- Oracle in 查詢優化Oracle優化
- 「Oracle」Oracle高階查詢介紹Oracle
- ORACLE 閃回檢視v$flashback_database_log/statOracleDatabase
- oracle update left join查詢Oracle
- Oracle阻塞會話查詢Oracle會話
- oracle最新補丁查詢Oracle
- oracle 例項表查詢Oracle
- SQL查詢語句 (Oracle)SQLOracle
- oracle表複雜查詢Oracle
- oracle 查詢鎖 && 解鎖Oracle
- Oracle查詢鎖、解鎖Oracle
- oracle常用維護查詢Oracle
- oracle查詢語句查詢增加一列內容Oracle
- MySQL 覆蓋索引、回表查詢MySql索引
- Oracle OCP(08):使用子查詢Oracle
- Oracle 查詢轉換-01 or expansionOracle