exam questions

Exam 1z0-060 All Questions

View all questions & answers for the 1z0-060 exam

Exam 1z0-060 topic 1 question 143 discussion

Actual exam question from Oracle's 1z0-060
Question #: 143
Topic #: 1
[All 1z0-060 Questions]

Which two are prerequisites for performing a flashback transaction? (Choose two.)

  • A. Flashback Database must be enabled.
  • B. Undo retention guarantee for the database must be configured.
  • C. EXECUTE privilege on the DBMS_FLASHBACK package must be granted to the user flashing back transaction.
  • D. Supplemental logging must be enabled.
  • E. Recycle bin must be enabled for the database.
  • F. Block change tracking must be enabled for the database.
Show Suggested Answer Hide Answer
Suggested Answer: CD 🗳️
To configure your database for the Flashback Transaction feature, you or your database administrator must:
With the database mounted but not open, enable ARCHIVELOG:
ALTER DATABASE ARCHIVELOG;
Open at least one archive log:
ALTER SYSTEM ARCHIVE LOG CURRENT;
If not done, enable minimal and primary key supplemental logging:
ALTER DATABASE ADD SUPPLEMENTAL LOG DATA;
ALTER DATABASE ADD SUPPLEMENTAL LOG DATA (PRIMARY KEY) COLUMNS;
If you want to track foreign key dependencies, enable foreign key supplemental logging:
ALTER DATABASE ADD SUPPLEMENTAL LOG DATA (FOREIGN KEY) COLUMNS;
References:
http://docs.oracle.com/cd/E11882_01/appdev.112/e41502/adfns_flashback.htm#ADFNS611

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
Currently there are no comments in this discussion, be the first to comment!
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...