You want to enable archiving on your database. Presently, the database is running in NOARCHIVELOG mode.Given below are the steps to accomplish the task in random order:<br /> 1. Shut down the instance.<br /> 2. Execute the ALTER DATABASE ARCHIVELOG command.<br /> 3. Start up the instance and mount the database.<br /> 4. Set the DB_RECOVERY_FILE_DEST initialization parameter to $ORACLE_HOME/dest_1.<br /> 5. Open the database.<br /> Which is the correct sequence of steps for accomplishing the task()
A、4, 1, 3, 2, 5
B、1, 3, 4, 5, 2
C、1, 3, 2, 5; 4 not required
D、4, 1, 5, 2; 3 not required
E、1, 3, 4, 5; 2 not required