To Disable the Archive Log:
change the following value to false in the init.ora file
log_archive_start=false
shutdown the database:
shutdown immediate
disable the archivelog:
startup mount
alter database noarchivelog;
alter database open;
archive log list;
To Enable the Archive Log:
change the following value to true in the init.ora file
log_archive_start=true
shutdown the database:
shutdown immediate
enable the archivelog:
startup mount
alter database archivelog;
alter database open;
archive log list;
archive log all;
change the following value to false in the init.ora file
log_archive_start=false
shutdown the database:
shutdown immediate
disable the archivelog:
startup mount
alter database noarchivelog;
alter database open;
archive log list;
To Enable the Archive Log:
change the following value to true in the init.ora file
log_archive_start=true
shutdown the database:
shutdown immediate
enable the archivelog:
startup mount
alter database archivelog;
alter database open;
archive log list;
archive log all;
Apps Dba Free Lance
Sukhwinder Singh
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.