zoukankan      html  css  js  c++  java
  • 053-616

    The EMP table has some discrepancy in data entry with a particular employee ID. You execute the
    query as shown in the Exhibit to retrieve all versions of the row that exist between two SCNs.View the Exhibit.
    Which two statements about the results of the query shown in the Exhibit are correct? (Choose two.)
    Exhibit:

    A. The LAST_SCN value in the first row is NULL, which means that the versions of the row still exist at SCN 6636300.
    B. The LAST_SCN value in the second row in NULL, which means that the version of the row still exists at SCN 6636300.
    C. The LAST_SCN value in the third row is 6636280, which means that the version of row exists above SCN 6636280.
    D. The LAST_SCN value in the second row is NULL, which means that the version of the row no longer exists because it was deleted.

      此处 FIST_SCN 和 LAST_SCN 表明了行存在的一个时间点范围。第一行是最近的一个版本,其操作状态是 I 说明是 insert,LAST_SCN 是 null,在 6636298 之后的没有新版本,所以 A正确。
      第二行的操作状态是 D 说明是 delete,也就是在 FIST_SCN 6636280 的时候删除了这个版本的行数据,所以此时 LAST_SCN 是 null,D 对。


  • 相关阅读:
    memcached与redis 对比
    Java中的成员初始化顺序和内存分配过程
    mysql inner join,full outer join,left join,right jion
    事务 相关概念理解
    最简单的重试机制
    垃圾脚本黑我linux服务器
    趣解curl
    面试题
    Java中OutOfMemoryError(内存溢出)的三种情况及解决办法
    PermGen space
  • 原文地址:https://www.cnblogs.com/Babylon/p/7839828.html
Copyright © 2011-2022 走看看