1、Which three are true about thresholds, metrics, and server-generated alerts? (Choose three.)
A. All metrics are instance related.
B. Cleared stateful alerts are displayed by querying DBA_ALERT_HISTORY.
C. A space usage management alert is automatically cleared after the underlying problem is resolved.
D. They are generated by SMON when a tablespace is 97% full.
E. Metrics are statistical counts for a specific unit.
F. STATISTICS_LEVEL must be set to ALL to generate alerts.
Answer:BCE
2、Which three are true about requirements for various FLASHBACK operations? (Choose three.)
A. FLASHBACK transaction query requires undo to retrieve all versions of a row that existed between two points in time.
B. FLASHBACK drop requires that the RECYCLEBIN parameter be set to ON.
C. FLASHBACK version query requires that the RECYCLEBIN parameter be set to ON.
D. FLASHBACK DATA ARCHIVE requires undo to store all versions of all rows of a table being tracked.
E. FLASHBACK drop requires undo to retrieve all versions of a row that existed between two points in time.
F. FLASHBACK version query requires undo to retrieve all versions of a row that existed between two points in time.
Answer:ABF
3、Which two are prerequisites for performing Flashback Transaction?
A. Fast Recovery Area must be enabled for the database.
B. The EXECUTE privilege must be granted to a user on the DBMS_FLASHBACK package.
C. Undo retention guarantee must be configured for the database.
D. A supplemental log must be enabled for the primary key.
E .Row movement must be enabled.
Answer:BD
4、choose one You enable Flashback Data Archive for a table for which you want to track and save all transactions for
four years. After some time, the requirement changes for keeping transactions from four to two years.
You execute the following command to change the requirement:
SQL> ALTER FLASHBACK ARCHIVE fdal MODIFY RETENTION 2 YEAR; What is the outcome?
A. All historical data older than two years, if any, is purged from the flashback archive FDA1.
B. An error is returned because the retention period cannot be reduced.
C. All the flashback data archives are purged and the subsequently created flashback archives are maintained for two years.
D. All historical data older than two years, if any, is archived to flashback logs and the flashback archive is set to new retention
time.
Answer:A
5、Which three statements are true about Flashback Data Archive?
A. To use Flashback Data Archive, users must have unlimited quota on the Flashback Data Archive tablespace.
B. To enable Flashback Data Archive for a table, it is mandatory to have a default Flashback Data Archive for a database.
C. While enabling Flashback Data Archive for a table, if no name is provided for Flashback Data Archive, it is enabled using the
default Flashback Data Archive.
D. A table enabled for Flashback Data Archive cannot be dropped unless Flashback Data Archive is disabled or disassociated
first.
E. Flashback Data Archive prevents flashback queries from getting a snapshot-too-old error.
Answer:CDE
6、Examine the statements that use flashback technologies:
1. FLASHBACK TABLE customers TO TIMESTAMP TO_TIMESTAMP('2013-02-04 09:30:00', 'YYYY-MM-DD HH:MI:SS');
2. SELECT * FROM customers AS OF SCN 123456;
3. FLASHBACK TABLE customers TO BEFORE DROP;
4. FLASHBACK DATABASE TO TIMESTAMP TO_TIMESTAMP('2013-02-04 09:30:00', 'YYYY-MM-DD HH:MI:SS');
5. SELECT * FROM customers VERSIONS BETWEEN SCN 123456 AND 123999;
6. ALTER TABLE customers FLASHBACK ARCHIVE;
评论