oracle: flashback version query示例

flashback version query不是oracle的什么新特性,但10g、11g都在9i基础上做了功能增强,在某些场合可能会用到。下面利用示例展示一下他的概念;

Connected to Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 
Connected as hr
 
SQL> show user;
User is "hr"
 
SQL> show parameter undo
 
NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
undo_management                      string      AUTO
undo_retention                       integer     9000
undo_tablespace                      string      UNDOTBS1
 
SQL> truncate table t1;
 
Table truncated
 
SQL> select systimestamp from dual;
 
SYSTIMESTAMP
--------------------------------------------------------------------------------
31-DEC-11 02.58.26.560000 PM +08:00
 
SQL> insert into t1 values(1,'jash');
 
1 row inserted
 
SQL> commit;
 
Commit complete
 
SQL> update t1 set name ='bob' where id =1;
 
1 row updated
 
SQL> commit;
 
Commit complete
 
SQL> select systimestamp from dual;
 
SYSTIMESTAMP
-----------------------------------------
31-DEC-11 02.59.04.318000 PM +08:00
 
SQL> 
SQL> SELECT versions_startscn, versions_starttime,
  2         versions_endscn, versions_endtime,
  3         versions_xid, versions_operation,
  4         id, name
  5    FROM hr.t1
  6    VERSIONS BETWEEN TIMESTAMP
  7        TO_TIMESTAMP('2011-12-31 14:58:26', 'YYYY-MM-DD HH24:MI:SS')
  8    AND TO_TIMESTAMP('2011-12-31 14:59:04', 'YYYY-MM-DD HH24:MI:SS');
 

查询结果列标题有些长,我做了截断,要不然整行显示不下,请对照上面的查询语句看列标题;

 
SQL> 
SQL> insert into t1 values(2,'clark');
 
1 row inserted
SQL> insert into t1 values(3,'pig');
 
1 row inserted
SQL> insert into t1 values(4,'duck');
 
1 row inserted
 
SQL> commit;
 
Commit complete
 
SQL> 
SQL> update t1 set name='kate' where id=2;
 
1 row updated
SQL> update t1 set name='luna' where id=2;
 
1 row updated
 
SQL> commit;
 
Commit complete
 
SQL> select systimestamp from dual;
 
SYSTIMESTAMP
--------------------------------------------------------------------------------
31-DEC-11 03.05.31.071000 PM +08:00
 
SQL> 
SQL> SELECT versions_startscn, versions_starttime,
  2         versions_endscn, versions_endtime,
  3         versions_xid, versions_operation,
  4         id, name
  5    FROM hr.t1
  6    VERSIONS BETWEEN TIMESTAMP
  7        TO_TIMESTAMP('2011-12-31 14:58:26', 'YYYY-MM-DD HH24:MI:SS')
  8    AND TO_TIMESTAMP('2011-12-31 15:05:31', 'YYYY-MM-DD HH24:MI:SS');

 做一下简要描述:

第六行:start_scn:3852006 end_scn:3852023 operation:I(insert)      表示插入values(1,'jash')

第五行:start_scn:3852023                                  operation:U(update)  表示更新'bob' id为1的记录,所以第六行新插入的数据被更新了;

... ...

... ...

可以看到通过查询可以找到所关注行的版本记录,其中必须存在于undo回滚段中,commit已提交的事务,呵呵;

 最后看一下官方文档的概述:

Oracle Flashback features use the Automatic Undo Management (AUM) system to obtain metadata and historical data for transactions. They rely on undo data, which are records of the effects of individual transactions. For example, if a user runs an UPDATE statement to change a salary from 1000 to 1100, then Oracle Database stores the value 1000 in the undo data.Undo data is persistent and survives a database shutdown.

By using flashback features, you can use undo data to query past data or recover from logical damage. Besides using it in flashback features, Oracle Database uses undo data to perform these actions:

•Roll back active transactions

•Recover terminated transactions by using database or process recovery

•Provide read consistency for SQL queries

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值