zoukankan      html  css  js  c++  java
  • 053387

    Which method could be utilized to identify both DML operations and the SQL statements needed to
    undo those operations for a specific schema owner? (Choose all that apply.)
    A. Query DBA_TRANSACTION_QUERY for TABLE_NAME, OPERATION, and UNDO_SQL. Limit rows by START_SCN and TABLE_OWNER.
    B. Query FLASHBACK_TRANSACTION_QUERY for TABLE_NAME, OPERATION, and UNDO_SQL.
    Limit rows by START_SCN and TABLE_OWNER.
    C. Query FLASHBACK_TRANSACTION_QUERY for TABLE_NAME, OPERATION, and UNDO_SQL.
    Limit rows by START_TIMESTAMP and TABLE_OWNER.
    D. Query DBA_TRANSACTION_QUERY for TABLE_NAME, OPERATION, and UNDO_SQL. Limit rows by START_SCN and TABLE_OWNER.

      FLASHBACK_TRANSACTION_QUERY is the correct view to query,and it can be done using either timestamps or SCN ranges.DBA_TRANSACTION_QUERY is not a valid view;therefore options A and D are incorrect.

      START_SCN START_TIMESTAMP 都是指一个时间点

  • 相关阅读:
    08月24日总结
    08月23日总结
    08月22日总结
    装饰器
    卢菲菲最强大脑记忆训练法全套教程 01
    LeetCode 704 二分查找
    LeetCode 1480 一维数组的动态和
    NIO 总结
    LeetCode 881 救生艇
    url的组成部分
  • 原文地址:https://www.cnblogs.com/Babylon/p/7827003.html
Copyright © 2011-2022 走看看