Problem:
How do I enable archivelog in an Oracle9i database?
Solution:
After logging into the running Oracle9i instance as the SYS user (sqlplus “/ as sysdba”), check the log_archive parameters:
show parameter log_archive
Set the archive log destination directory (note that these commands assume that the database uses the spfile):
alter system set log_archive_start=TRUE scope=spfile; alter system set log_archive_dest_1='location=/u01/archive/ORCL/' scope=spfile; alter system set log_archive_format='arch_%t_%s.arc' scope=spfile;
Then shutdown and mount the database, and enable archivelog:
shutdown immediate; startup mount; archive log start; alter database archivelog; alter database open;
Reference:
http://www.oracle-base.com/articles/9i/ArchivelogModeOnRAC9i.php
[amazon asin=0071496610&template=iframe image&chan=default] [amazon asin=1849687307&template=iframe image&chan=default] [amazon asin=0071598758&template=iframe image&chan=default]
0 Comments.