How To Enable Archivelog Mode in Oracle Database 11g
How To Enable Archivelog Mode in Oracle Database 11g
NAME LOG_MODE
--------- - -----------
ORCL NOARCHIVELOG
To change the Oracle database in ARCHIVELOG mode. PFB below mentioned steps:-
1. If needed set the archive log destination where you want to save your archive logs whether to
a single location or to multiple location. If this is not set then Oracle save archive log files in
DB_RECOVERY_FILE_DEST location if set. If you have not set your DB_RECOVERY_FILE_DEST
location then you have to set your archive location before changing your database to
ARCHIVELOG mode.
Note -- To change this parameter while database is open, your database has to run with SPFILE, if
running through PFILE then shut down your database and make changes in your PFILE and then
start the database in MOUNT mode using that changed PFILE
2. After this you need to shut down your database and start again in MOUNT mode
To change the Oracle database in NOARCHIVELOG mode. PFB below mentioned steps:-
1.Shutdown your running database.
SQL> shu immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
2. Start your database in MOUNT mode.