Oracle Database をアーカイブ・ログ・モードで運用している場合に、REDOログのアーカイブ先を変更する手順の例。
bash-3.00# mkdir -p /{u01,u02}/app/oracle/admin/orcl/arch bash-3.00# chown -R oracle:oinstall /{u01,u02} bash-3.00# su - oracle bash-3.00$ sqlplus / as sysdba SQL> alter system set log_archive_dest_1='LOCATION=/u01/app/oracle/admin/orcl/arch' scope=both; SQL> alter system archive log current; SQL> !ls -l /u01/app/oracle/admin/orcl/arch 2352 -rw-r----- 1 oracle oinstall 1192448 1 24 22:50 1_13_737750686.dbf SQL> alter system set log_archive_dest_1='LOCATION=/u02/app/oracle/admin/orcl/arch' scope=both; SQL> alter system archive log current; SQL> !ls -l /u02/app/oracle/admin/orcl/arch 18 -rw-r----- 1 oracle oinstall 8704 1 24 22:53 1_18_737750686.dbf