Oralce Archive Log Mode 셋팅하기 (Oracle 12.0.1)

1. archive log mode 확인
SQL> archive log list;

2. archive log 저장위치 지정
SQL> select dest_name, status, destination from v$archive_dest;
SQL> alter system set log_archive_dest_1 = 'LOCATION=D:\Oracle\MESA\arch';

3. archive log file 포맷 지정
SQL> select value from v$parameter where name='log_archive_format';
SQL> alter system set log_archive_format = '%r_%t_%s.arc' scope=spfile;

4. mode change
SQL> shutdown immediate
SQL> startup mount
SQL> alter database archivelog; (또는 noarchivelog)
SQL> alter database open;



혹시 모르니 archive mode로 변경하기 전에 backup, 변경한 직후에 backup 한 번씩 해야 함


Posted by 하이안
,