zoukankan      html  css  js  c++  java
  • 【练习】flashback基于scn的闪回查询

    1.创建表dept1:

    13:01:03 SCOTT@ORA11GR2>create table dept1 as select * from dept;
    
    Table created.
    
    13:01:40 SCOTT@ORA11GR2>select * from dept1;
    
        DEPTNO DNAME          LOC
    ---------- -------------- -------------
            10 ACCOUNTING     NEW YORK
            20 RESEARCH       DALLAS
            30 SALES          CHICAGO
            40 OPERATIONS     BOSTON
    13:02:22 SCOTT@ORA11GR2>insert into dept1 values(50,'xxx','xxxx');
    
    1 row created.

    2.查看当前的scn:

    13:04:12 SYS@ORA11GR2>select current_scn from v$database;
    
    CURRENT_SCN
    -----------
        1006836

    3.删除表dept1:

    13:07:51 SCOTT@ORA11GR2>delete from dept1;
    
    4 rows deleted.
    
    13:08:03 SCOTT@ORA11GR2>select * from dept1;
    
    no rows selected

    4.基于scn的查询:

    13:08:15 SCOTT@ORA11GR2>select * from dept1 as of scn 1006836;
    
        DEPTNO DNAME          LOC
    ---------- -------------- -------------
            20 RESEARCH       DALLAS
            30 SALES          CHICAGO
            40 OPERATIONS     BOSTON
            50 xxx            xxxx
  • 相关阅读:
    CSS动画小结
    CSS效果常见问题
    CSS效果小结
    CSS(非布局样式)
    CSS(选择器)
    SkipList
    实现一个简易版RPC
    实现一个简易版的SpringMvc框架
    关于缓存击穿
    java多线程系列 目录
  • 原文地址:https://www.cnblogs.com/tomatoes-/p/6159434.html
Copyright © 2011-2022 走看看