การเปิด archive log สามารถทำได้ดังนี้
- ทำการกำหนดค่าของ Archive หลังจากที่มีการ Enable แล้วใน initxxx.ora หรือ ใน spfilexxx.ora
############################
# Archive Log Destinations -benr(10/15/04)
############################
log_archive_dest_1=’location=/u02/oradata/cuddle/archive’
log_archive_start=TRUE
- เปิด Database ใน Mode Mount และทำการ Enable Archive log
SQL> startup mount;
ORACLE instance started.
Total System Global Area 1073741824 bytes
Fixed Size 1265508 bytes
Variable Size 465567900 bytes
Database Buffers 536870912 bytes
Redo Buffers 70037504 bytes
Database mounted.
SQL> select log_mode from v$database;
LOG_MODE
NOARCHIVELOG
SQL> alter database archivelog;
Database altered.
SQL> alter database open;
Database altered.