Converting A Single Instanced To RAC
Converting A Single Instanced To RAC
Converting A Single Instanced To RAC
Filed under: Oracle Database 10g,Oracle RAC — Tags: catclust.sql, converting single instance database to RAC, manual
single instance to RAC, single instance to RAC — advait @ 6:32 pm
1) Manual Method
2) Using rconfig
3) Using DBCA
4) Using grid control
In this post we will see step by step manual method to convert a single instance database to RAC. Later on I will also try to
cover other methods
Manual Method
ORACLE_HOME=/u01/app/oracle/product/10.2.0/db_1
ORACLE_SID=prod
Datafile location = /u03/oradata/prod — /u03 is a ocfs shared file system. So we are going to keep the datafiles are same
location while converting to RAC.
In case your files are at some other slot or disk and not in shared file system, you need to copy the same and then rename the
files when you mount the instance.
Step 1) Install clusterware on the nodes on which you want to setup RAC
For detailed steps on installing clusterware on the nodes, you can refer to my previous post – http://avdeo.com/oracle-
real-application-cluster-10g/
or you can refer to any other post over the internet. Basically you need to setup the IP addresses and other OS related files
and variables before you can install the clusterware.
Your clusterware version must be greater then or equal to the single instance RDBMS version. Make sure you do this step
correct.
Again for this step, you can refer to my previous post – http://avdeo.com/oracle-real-application-cluster-10g/ or any post on
the internet.
Just install the s/w. The RDBMS software version must be same as your single instance RDBMS software version
RAC RACLE_HOME=/u01/app/oracle/product/10.2.0/db
Number of instances = 2
/u01 is a individual filesystem and is not mounted commonly on both nodes. This is a separate ORACLE_HOME
architecture.
Step 3) Take the backup of single instance database and restore the same to the shared file system location.
This step is not required in my case as I created the database on a shared filesystem only. But this is only for demo purpose.
For real time scenario, you need to copy datafiles to shared filsystem.
Step 4) Copy init.ora file of single instance and add following parameters
bash-3.00$ cp initprod.ora /tmp/initprod.ora
In my case the database name is “prod” and I am converting this single instance database to a 2 node RAC. So in my case
instance 1 name becomes prod1 and instance 2 name becomes prod2
In my case the controlfiles are present in /u03 location which is a OCFS shared filesystem. So I dont have to change the
locaiton of controlfiles in my init.ora
Incase you have moved the controlfiles along with the datafiles to shared filesystem location, then you need to change the
path of controlfile in the above init.ora file copied in/tmp location
NAME
---------
PROD
SQL>
Step 7) Copy spfile to the RAC ORACLE_HOME/dbs location of instance 1 and create pfile
bash-3.00$ cp spfileprod.ora /u01/app/oracle/product/10.2.0/db/dbs/spfileprod.ora
bash-3.00$ pwd
/u01/app/oracle/product/10.2.0/db/dbs
bash-3.00$ cat initprod1.ora
spfile='/u01/app/oracle/product/10.2.0/db/dbs/spfileprod.ora'
Step Create new password file for prod1 instance under RAC oracle home
bash-3.00$ orapwd file=orapwprod1 password=welcome1
Step 9) Start database in mount stage and rename datafiles and redo log files to new shared location
In my case since the datafiles and online redo logs are placed at same shared location, I dont need to do this step. However in
real time scenario, this step is required.
Step 10) Add second thread to database which will be for instance 2
SQL> alter database add logfile thread 2 group 4 ('/u03/oradata/prod/redo2_01.dbf') size 50M, group 5
Database altered.
Database altered.
Database altered.
The name of the undo tablespace should be same as you specified in the init.ora file in step 4 above.
SQL> CREATE UNDO TABLESPACE UNDOTBS2 DATAFILE '/u03/oradata/prod/undotbs2_01.dbf' size 25M;
Tablespace created.
Step 12) Run $ORACLE_HOME/rdbms/admin/catclust.sql to create cluster database specific views within the existing
instance 1
SQL> @?/rdbms/admin/catclust.sql
Step 13)
Create initprod2.ora on second node similar to node 1. In this case you have to copy spfile to second node as well. You can
also keep spfile in shared location (/u03 in my case) and put same path in initprod2.ora
bash-3.00$ pwd
/u01/app/oracle/product/10.2.0/db/dbs
bash-3.00$ ls -lrt spfileprod.ora
-rw-r----- 1 oracle oinstall 3584 Feb 19 12:36 spfileprod.ora
bash-3.00$ cat initprod2.ora
spfile='/u01/app/oracle/product/10.2.0/db/dbs/spfileprod.ora'
You might face some issue while starting second instance as bdump, udump and cdump dir location will be that of single
instance ORACLE_HOME which is not present in node2.
Make sure you alter following parameters to a valid location and copy spfileprod.ora again to node2
audit_file_dest
background_dump_dest
user_dump_dest
core_dump_dest
move the spfile to the common location such as /u03/oradata/prod and modify both the pfiles so that both pfiles refers to
same spfile and there are no 2 copies.
bash-3.00$ srvctl add database -d prod -o /u01/app/oracle/product/10.2.0/db -p /u03/oradata/prod/spfil
bash-3.00$ srvctl add instance -d prod -i prod1 -n OCVMRH2103
bash-3.00$ srvctl add instance -d prod -i prod2 -n OCVMRH2190
References:
Metalink Note ID : 747457.1