RAC alter database archivelog

Switch a RAC database into archivelog mode:

1srvctl stop database -d dbname
2startup mount    --only one instance
3alter database archivelog
4alter database open
5srvctl start database -d dbname  --this will start the remaining instances on the cluster

And switch it into noarchivelog mode:

1srvctl stop database -d dbname
2startup mount    --only one instance
3alter database noarchivelog
4alter database open
5srvctl start database -d dbname   --this will start the remaining instances on the cluster


Above method from Bhavin Hingu. It is also possible to do it this way:

1alter system set log_archive_dest_1='location=/ORA_DISK/redoarch/arch_' scope=both sid='*' ;
2alter system set cluster_database=false scope=spfile sid='mydb1';
3srvctl stop database -d mydb
4startup mount
5alter database archivelog ;
6alter system set cluster_database=true scope=spfile sid='mydb1';
7shutdown immediate
8srvctl start database -d mydb

And switch it into noarchivelog mode:

1alter system reset log_archive_dest_1 scope=spfile sid='*' ;
2alter system set cluster_database=false scope=spfile sid='mydb1';
3srvctl stop database -d mydb
4startup mount
5alter database noarchivelog ;
6alter system set cluster_database=true scope=spfile sid='mydb1';
7shutdown immediate
8srvctl start database -d mydb
October 28, 2010

Leave a Reply

Your email address will not be published. Required fields are marked *