zoukankan      html  css  js  c++  java
  • UNDO表空间

    What Is Undo?

    Oracle Database creates and manages information that is used to roll back, or undo, changes to the database. Such information consists of records of the actions of transactions, primarily before they are committed. These records are collectively referred to as undo.

    Undo records are used to:

    • Roll back transactions when a ROLLBACK statement is issued

    • Recover the database

    • Provide read consistency

    • Analyze data as of an earlier point in time by using Oracle Flashback Query

    • Recover from logical corruptions using Oracle Flashback features

    When a ROLLBACK statement is issued, undo records are used to undo changes that were made to the database by the uncommitted transaction. During database recovery, undo records are used to undo any uncommitted changes applied from the redo log to the data files. Undo records provide read consistency by maintaining the before image of the data for users who are accessing the data at the same time that another user is changing it.

    转自oracle官网。

  • 相关阅读:
    1864: [Zjoi2006]三色二叉树
    3611: [Heoi2014]大工程
    2286: [Sdoi2011]消耗战
    2298: [HAOI2011]problem a
    2037: [Sdoi2008]Sue的小球
    P4512 【模板】多项式除法
    P4238 【模板】多项式求逆
    3771: Triple
    P3365 改造二叉树
    1191: [HNOI2006]超级英雄Hero
  • 原文地址:https://www.cnblogs.com/matrixworld/p/5543204.html
Copyright © 2011-2022 走看看