You want to configure the Flashback Database feature and retain flashback logs for three days.
The steps used in this process are:
A. Set the retention target:
SQL> ALTER SYSTEM SET DB_FLASHBACK_RETENTION_TARGET=4320;
B. Enable Flashback Database:
SQL> ALTER DATABASE FLASHBACK ON;
C. Mount the database:
SQL> STARTUP MOUNT EXCLUSIVE;
D. Shut down the instance:
SQL> SHUTDOWN IMMEDIATE;
E. Open the database:
SQL> ALTER DATABASE OPEN;
In what sequence would you need to perform these steps to enable the Flashback Database feature?
A.
D, C, A, B, E
B.
D, A, C, B, E
C.
B, D, C, E, A
D.
D, B, E, C, A