67.On which two database objects can the VERSIONS clause of the Flashback Versions Query be used?
(Choose two.)
A. fixed tables
B. heap tables
C. external tables
D. temporary tables
E. Index-Organized Tables (IOTs)
Answer: BE
答案解析:
同489题:http://blog.csdn.net/rlhua/article/details/19175515
参考:http://docs.oracle.com/cd/E11882_01/server.112/e41084/statements_10002.htm#SQLRF55624
排除法,选择BE
Restrictions on Flashback Queries These queries are subject to the following restrictions:
-
You cannot specify a column expression or a subquery in the expression of the
ASOFclause. -
You cannot specify the
ASOFclause if you have specified thefor_update_clause. -
You cannot use the
ASOFclause in the defining query of a materialized view. -
You cannot use the
VERSIONSclause in flashback queries to temporary or external tables, or tables that are part of a cluster. -
You cannot use the
VERSIONSclause in flashback queries to views. However, you can use theVERSIONSsyntax in the defining query of a view. -
You cannot specify the
flashback_query_clauseif you have specifiedquery_namein thequery_table_expression.
同489题
To research an erroneous change, you can use multiple Oracle Flashback queries to view row data at specific points in time. A more efficient approach would be to use Oracle Flashback Version Query to view all changes to a row over a period of time. With this feature, you append a VERSIONS clause to a SELECTstatement that specifies a system change number (SCN) or timestamp range between which you want to view changes to row values. The query also can return associated metadata, such as the transaction responsible for the change.
本文探讨了Oracle Flashback查询在不同数据库对象上的使用限制,包括heap表和Index-Organized Tables (IOTs),并详细解释了查询的使用场景和限制条件。

66

被折叠的 条评论
为什么被折叠?



