How to Change Archive Log Destination in Oracle?

This how-to guide shows how to change the archive log destination in Oracle in 5 easy steps.

How to guide
Changing archive log destination in Oracle.
Confirm the current archive log location before changing it using the following command:
sqlplus / as sysdba
startup
archive log list
Now set the FRA Value using the following command:
alter system set db_recovery_file_dest_size=10g scope=both;
Change FRA directory:
alter system set db_recovery_file_dest='/usr01/oracle/fra scope=both;
Check the status of new archive log location:
archive log list
Switch the redo log file and archive log generated in the FRA location:
alter system switch logfile;

Video Tutorial

Useful Resources

Oracle Docs