Software Knowledge

  1. Home
  2. Docs
  3. Software Knowledge
  4. Database
  5. Oracle: การเปิด และ ปิด Archive log
Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors

Oracle: การเปิด และ ปิด Archive log

การเปิด archive log สามารถทำได้ดังนี้

  1. ทำการกำหนดค่าของ 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

  1. เปิด 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.