Questions
Answer the following questions to test your knowledge of this chapter:
- Which transaction property ensures access just to confirmed data changes (assuming the transaction has already reached
COMMIT
)?- Atomicity
- Consistency
- Isolation
- Durability
- Which attribute signifies the transaction time reflection for the
Flashback
data reconstruction?UNDO
REDO
SCN
LGWR
- Which state of the database must be applied to perform
FLASHBACK DATABASE
?NOMOUNT
MOUNT
OPEN
RESETLOGS
- Which statement gets you the table
Tab
content as it existed at the SCN37787875368953
?select * from Tab AS OF
SCN 37787875368953;
select * from Tab AS OF
TIMESTAMP 37787875368953;
select * from Tab FLASHBACK
to 37787875368953;
select * from Tab
where SCN=37787875368953;