SlideShare a Scribd company logo
2
Most read
4
Most read
Backup and Restore of database on 2-Node RAC 
Introduction: 
This document provides a high level overview and steps to restore a 2-node RAC database 
which we did in one of our environments recently. 
Environment Details: 
DBName : TEST1 
Oracle version: 11gR2 
Steps: 
1. Take a backup of the database or else use the last successful backup from tape / disk 
2. Created the parameter file with the bare minimum parameters for the database to 
startup. 
vi initTEST1.ora 
*.audit_file_dest='/u01/app/oracle/admin/TEST1/adump' 
*.audit_trail='db' 
*.compatible='11.2.0.2.0' 
*.control_files='+DATA','+FRA' 
*.db_block_size=8192 
*.db_create_file_dest='+DATA' 
*.db_create_online_log_dest_1='+DATA' 
*.db_name='RAC' 
*.diagnostic_dest='/u01/app/oracle' 
*.log_archive_dest_1='LOCATION=+FRA' 
*.log_archive_format='%t_%s_%r.dbf' 
*.memory_target=1658847232 
*.open_cursors=300 
*.processes=150 
*.remote_login_passwordfile='EXCLUSIVE' 
*.undo_tablespace='UNDOTBS1' 
*.cluster_database=false 
3. Start the database in NOMOUNT stage for restore and recovery from the backup: 
[oracle@MYHOST1 dbs]$ sqlplus / as sysdba 
SQL*Plus: Release 11.2.0.2.0 Production on Thu Aug 1 05:58:30 2013 
Copyright (c) 1982, 2009, Oracle. All rights reserved. 
Connected to an idle instance. 
SQL> startup nomount pfile='initTEST1.ora'
ORACLE instance started. 
Total System Global Area 1653518336 bytes 
Fixed Size 2213896 bytes 
Variable Size 956303352 bytes 
Database Buffers 687865856 bytes 
Redo Buffers 7135232 bytes 
SQL> exit 
4. Connect to the Oracle Recovery Manager and restore the control file associated with the 
recent backup that is planned to be restored. 
Connect to RMAN: 
[oracle@MYHOST1 dbs]$ rman target / 
Recovery Manager: Release 11.2.0.2.0 - Production on Thu Aug 1 05:59:28 2013 
Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved. 
connected to target database: RAC (not mounted) 
RMAN> restore controlfile from autobackup 
Starting restore at 17-JUN-14 
using target database control file instead of recovery catalog 
allocated channel: ORA_DISK_1 
channel ORA_DISK_1: SID=29 device type=DISK 
channel ORA_DISK_1: restoring control file 
channel ORA_DISK_1: restore complete, elapsed time: 00:00:08 
output file name=+DATA/TEST1/controlfile/current.236.7445645 
output file name=+FRA/TEST1/controlfile/current.235.7445645 
Finished restore at 17-JUN-14 
RMAN> alter database mount; 
database mounted 
released channel: ORA_DISK_1 
5. Initiate a restore of the database once the control file is restored and the DB is in 
mount state as shown below. 
RMAN> restore database; 
Starting restore at 17-JUN-14 
allocated channel: ORA_DISK_1 
channel ORA_DISK_1: SID=29 device type=DISK 
channel ORA_DISK_1: starting datafile backup set restore 
channel ORA_DISK_1: specifying datafile(s) to restore from backup set 
channel ORA_DISK_1: restoring datafile 00001 to +DATA/TEST1/system.356.1123822
channel ORA_DISK_1: restoring datafile 00004 to +DATA/TEST1/users. 356.1223822 
channel ORA_DISK_1: reading from backup piece 
channel ORA_DISK_1: piece 
channel ORA_DISK_1: restored backup piece 1 
channel ORA_DISK_1: restore complete, elapsed time: 00:00:45 
channel ORA_DISK_1: starting datafile backup set restore 
channel ORA_DISK_1: specifying datafile(s) to restore from backup set 
channel ORA_DISK_1: restoring datafile 00003 to 
+DATA/rac/datafile/undotbs1.314.822277039 
channel ORA_DISK_1: restoring datafile 00005 to 
+DATA/rac/datafile/undotbs2.315.822277039 
channel ORA_DISK_1: reading from backup piece channel ORA_DISK_1: piece 
channel ORA_DISK_1: restored backup piece 1 
channel ORA_DISK_1: restore complete, elapsed time: 00:00:15 
channel ORA_DISK_1: starting datafile backup set restore 
channel ORA_DISK_1: specifying datafile(s) to restore from backup set 
channel ORA_DISK_1: restoring datafile 00002 to +DATA/ TEST1/sysaux.311.822277081 
channel ORA_DISK_1: reading from backup piece 
channel ORA_DISK_1: piece 
channel ORA_DISK_1: restored backup piece 1 
channel ORA_DISK_1: restore complete, elapsed time: 00:00:36 
Finished restore at 17-JUN-14 
Recover the database 
RMAN> recover database; 
Starting recover at 17-JUN-14 
using channel ORA_DISK_1 
starting media recovery 
archived log for thread 1 with sequence 8 is already on disk as file 
+FRA/TEST1/2014_06_17/thread_1_seq_8.412.822282953 
archived log for thread 2 with sequence 6 is already on disk as file 
+FRA/TEST1/2014_06_17/thread_2_seq_6.413.822282955 
archived log file name=+FRA/TEST1/2014_06_17/thread_1_seq_8.412.822282953 thread=1 
sequence=8 
archived log file name=+FRA/TEST1/2014_06_17/thread_2_seq_6.413.822282955 thread=2 
sequence=6 
archived log file name=+FRA/TEST1/2014_06_17/thread_1_seq_9.415.822287039 thread=1 
sequence=9 
archived log file name=+FRA/TEST1/2014_06_17/thread_2_seq_7.414.822286061 thread=2 
sequence=7 
unable to find archived log 
archived log thread=2 sequence=8 
6. Open the database with resetlogs:
RMAN> alter database open resetlogs; 
database opened 
RMAN> exit 
Recovery Manager complete. 
7. Start the database 
SQL> startup 
ORACLE instance started. 
Total System Global Area 1068937216 bytes 
Fixed Size 2220200 bytes 
Variable Size 616566616 bytes 
Database Buffers 444596224 bytes 
Redo Buffers 5554176 bytes 
Database mounted. 
Database opened. 
8. Once the DB is started, add the entries and start using the server control utility. 
Start the database using SRVCTL: 
[oracle@MYHOST1 dbs]$ srvctl status database -d RAC 
Instance TEST1 is not running on node MYHOST1 
[oracle@MYHOST1 dbs]$ srvctl start database -d RAC 
[oracle@MYHOST1 dbs]$ srvctl status database -d RAC 
Instance TEST1 is running on node MYHOST1

More Related Content

What's hot (20)

PPTX
Automating Your Clone in E-Business Suite R12.2
Michael Brown
 
PPTX
My SYSAUX tablespace is full - please help
Markus Flechtner
 
PDF
Backup and recovery in oracle
sadegh salehi
 
PDF
DBMS Part-4.pdf
Prof. Dr. K. Adisesha
 
DOCX
Data guard architecture
Vimlendu Kumar
 
PPTX
SAP BW - Master data load via flat file
Yasmin Ashraf
 
PPT
Oracle Architecture
Neeraj Singh
 
PDF
Treinamento RMAN Workshop 12c
Douglas Paiva de Sousa
 
PPT
Dataguard presentation
Vimlendu Kumar
 
PPT
Les 17 sched
Femi Adeyemi
 
PPTX
Why oracle data guard new features in oracle 18c, 19c
Satishbabu Gunukula
 
PDF
Expert performance tuning tips for Oracle RAC
SolarWinds
 
PDF
Release and patching strategy
Jitendra Singh
 
PDF
Oracle database hot backup and recovery
Arun Sharma
 
DOCX
Oracle 19c initialization parameters
Pablo Echeverria
 
PDF
Automating Security Management in PBCS!
Dayalan Punniyamoorthy
 
PPTX
Backup & recovery with rman
itsabidhussain
 
PPTX
SQL Server High Availability and Disaster Recovery
Michael Poremba
 
PPTX
The oracle database architecture
Akash Pramanik
 
PPTX
User, roles and privileges
Yogiji Creations
 
Automating Your Clone in E-Business Suite R12.2
Michael Brown
 
My SYSAUX tablespace is full - please help
Markus Flechtner
 
Backup and recovery in oracle
sadegh salehi
 
DBMS Part-4.pdf
Prof. Dr. K. Adisesha
 
Data guard architecture
Vimlendu Kumar
 
SAP BW - Master data load via flat file
Yasmin Ashraf
 
Oracle Architecture
Neeraj Singh
 
Treinamento RMAN Workshop 12c
Douglas Paiva de Sousa
 
Dataguard presentation
Vimlendu Kumar
 
Les 17 sched
Femi Adeyemi
 
Why oracle data guard new features in oracle 18c, 19c
Satishbabu Gunukula
 
Expert performance tuning tips for Oracle RAC
SolarWinds
 
Release and patching strategy
Jitendra Singh
 
Oracle database hot backup and recovery
Arun Sharma
 
Oracle 19c initialization parameters
Pablo Echeverria
 
Automating Security Management in PBCS!
Dayalan Punniyamoorthy
 
Backup & recovery with rman
itsabidhussain
 
SQL Server High Availability and Disaster Recovery
Michael Poremba
 
The oracle database architecture
Akash Pramanik
 
User, roles and privileges
Yogiji Creations
 

Viewers also liked (20)

PDF
RMAN best practices for RAC
Syed Hussain
 
DOCX
Oracle 12c RAC On your laptop Step by Step Implementation Guide 1.0
Yury Velikanov
 
PDF
Step by Step Restore rman to different host
Osama Mustafa
 
DOCX
Rac questions
parvezsigan
 
DOC
Backup and Recovery Procedure
Anar Godjaev
 
PDF
153 Oracle dba interview questions
Sandeep Sharma IIMK Smart City,IoT,Bigdata,Cloud,BI,DW
 
PPSX
Oracle 11g R2 RAC implementation and concept
Santosh Kangane
 
PPTX
Understand oracle real application cluster
Satishbabu Gunukula
 
DOCX
Oracle dba interview questions with answer
upenpriti
 
DOCX
Dba 3+ exp qus
krreddy21
 
PDF
Managing troubleshooting cluster_360dgrees
Syed Hussain
 
PDF
Troug 11 gnf
Syed Hussain
 
PDF
Oracle exalytics deployment for high availability
Paulo Fagundes
 
PPT
IEEE Day 2013 - Best 10 New Features of Oracle Database 12c
Mahir M. Quluzade
 
PPTX
Oracle Day in Baku State University - Oracle Database Overview
Mahir M. Quluzade
 
PPTX
Oracle Database In-Memory & Multitenant - TROUG Days'16 Istanbul
Mahir M. Quluzade
 
PDF
You most probably dont need rman catalog database white paper
Yury Velikanov
 
PPTX
Resume
Mahaveer Jain
 
PDF
Installation and configuration 11g r2 asm using job role separation(grid & or...
Zhaoyang Wang
 
PDF
Deploying Oracle 11g R2 on Linux RHEL6
Mc Cloud
 
RMAN best practices for RAC
Syed Hussain
 
Oracle 12c RAC On your laptop Step by Step Implementation Guide 1.0
Yury Velikanov
 
Step by Step Restore rman to different host
Osama Mustafa
 
Rac questions
parvezsigan
 
Backup and Recovery Procedure
Anar Godjaev
 
153 Oracle dba interview questions
Sandeep Sharma IIMK Smart City,IoT,Bigdata,Cloud,BI,DW
 
Oracle 11g R2 RAC implementation and concept
Santosh Kangane
 
Understand oracle real application cluster
Satishbabu Gunukula
 
Oracle dba interview questions with answer
upenpriti
 
Dba 3+ exp qus
krreddy21
 
Managing troubleshooting cluster_360dgrees
Syed Hussain
 
Troug 11 gnf
Syed Hussain
 
Oracle exalytics deployment for high availability
Paulo Fagundes
 
IEEE Day 2013 - Best 10 New Features of Oracle Database 12c
Mahir M. Quluzade
 
Oracle Day in Baku State University - Oracle Database Overview
Mahir M. Quluzade
 
Oracle Database In-Memory & Multitenant - TROUG Days'16 Istanbul
Mahir M. Quluzade
 
You most probably dont need rman catalog database white paper
Yury Velikanov
 
Installation and configuration 11g r2 asm using job role separation(grid & or...
Zhaoyang Wang
 
Deploying Oracle 11g R2 on Linux RHEL6
Mc Cloud
 
Ad

Similar to Backup and Restore of database on 2-Node RAC (20)

PDF
FIXING BLOCK CORRUPTION (RMAN) on 11G
N/A
 
DOCX
Rman cloning when both directory and db name are same.
subhani shaik
 
DOCX
Rman cloning when both directory and db name are same.
subhani shaik
 
DOC
br_test_lossof-datafile_10g.doc
Lucky Ally
 
DOCX
Moving 12c database from NON-ASM to ASM
Monowar Mukul
 
PDF
Colvin RMAN New Features
Enkitec
 
DOCX
Migrate from database file system to asm
Surender Martha
 
DOCX
Rman backup and recovery 11g new features
Nabi Abdul
 
PPTX
Cloning Oracle EBS R12: A Step by Step Procedure
Orazer Technologies
 
PPT
Les 06 Perform Rec
vivaankumar
 
PDF
Collaborate 2012 - RMAN Eliminate the mystery
Nelson Calero
 
PDF
oracle upgradation
influxbob
 
PDF
White Paper - What is new at 11g for Backup and Recovery
Francisco Alvarez
 
DOC
Oracle data guard configuration in 12c
uzzal basak
 
PDF
使用Prm恢复受损的oracle数据表几个例子
maclean liu
 
PDF
RMAN – The Pocket Knife of a DBA
Guatemala User Group
 
DOCX
Change DB Name
Anar Godjaev
 
PPT
Les 05 Create Bu
vivaankumar
 
PDF
Oracle Database Management Basic 1
Chien Chung Shen
 
PDF
Oracle Database Backup Cloud Service
MarketingArrowECS_CZ
 
FIXING BLOCK CORRUPTION (RMAN) on 11G
N/A
 
Rman cloning when both directory and db name are same.
subhani shaik
 
Rman cloning when both directory and db name are same.
subhani shaik
 
br_test_lossof-datafile_10g.doc
Lucky Ally
 
Moving 12c database from NON-ASM to ASM
Monowar Mukul
 
Colvin RMAN New Features
Enkitec
 
Migrate from database file system to asm
Surender Martha
 
Rman backup and recovery 11g new features
Nabi Abdul
 
Cloning Oracle EBS R12: A Step by Step Procedure
Orazer Technologies
 
Les 06 Perform Rec
vivaankumar
 
Collaborate 2012 - RMAN Eliminate the mystery
Nelson Calero
 
oracle upgradation
influxbob
 
White Paper - What is new at 11g for Backup and Recovery
Francisco Alvarez
 
Oracle data guard configuration in 12c
uzzal basak
 
使用Prm恢复受损的oracle数据表几个例子
maclean liu
 
RMAN – The Pocket Knife of a DBA
Guatemala User Group
 
Change DB Name
Anar Godjaev
 
Les 05 Create Bu
vivaankumar
 
Oracle Database Management Basic 1
Chien Chung Shen
 
Oracle Database Backup Cloud Service
MarketingArrowECS_CZ
 
Ad

More from Paulo Fagundes (10)

PDF
Zero Downtime for Oracle E-Business Suite on Oracle Exalogic
Paulo Fagundes
 
PDF
Mongodb
Paulo Fagundes
 
PPTX
MongoDB for the SQL Server
Paulo Fagundes
 
ODP
MongoDB - Javascript for your Data
Paulo Fagundes
 
PPTX
Capacityplanning
Paulo Fagundes
 
PDF
The Little MongoDB Book - Karl Seguin
Paulo Fagundes
 
PPTX
Mondodb
Paulo Fagundes
 
PDF
Oracle NoSQL Database Compared to Cassandra and HBase
Paulo Fagundes
 
PDF
The Power of Relationships in Your Big Data
Paulo Fagundes
 
PDF
Oracle NoSQL Database release 3.0 overview
Paulo Fagundes
 
Zero Downtime for Oracle E-Business Suite on Oracle Exalogic
Paulo Fagundes
 
MongoDB for the SQL Server
Paulo Fagundes
 
MongoDB - Javascript for your Data
Paulo Fagundes
 
Capacityplanning
Paulo Fagundes
 
The Little MongoDB Book - Karl Seguin
Paulo Fagundes
 
Oracle NoSQL Database Compared to Cassandra and HBase
Paulo Fagundes
 
The Power of Relationships in Your Big Data
Paulo Fagundes
 
Oracle NoSQL Database release 3.0 overview
Paulo Fagundes
 

Recently uploaded (17)

PPTX
ualities-of-Quantitative-Research-1.pptx
jamjamkyong
 
PPTX
英国学位证(PSU毕业证书)普利茅斯大学毕业证书如何办理
Taqyea
 
PPTX
Contingency-Plan-and-Reminders-from-the-PMO.pptx
PrincessCamilleGalle1
 
PPT
(1) Chemotherapeutic drugs Antimicrobials.ppt
mkurdi133
 
PPT
Confined Space.ppth. Bbbb. Bbbbbbbbbbbbbbbbbbbbbbbnnnjjj
eshaiqbal7
 
PPT
it_14.ppt using atharva college of engineering
shkzishan810
 
PPTX
西班牙维尔瓦大学电子版毕业证{UHU毕业完成信UHU水印成绩单}原版制作
Taqyea
 
PPTX
Dock Line Organization Made Easy – Discover AMARREX, the Mooring Line Holder ...
Seawatt
 
PPTX
diagnosisinfpdpart1-200628063900 (1).pptx
JayeshTaneja4
 
PPTX
英国学位证(LTU毕业证书)利兹三一大学毕业证书如何办理
Taqyea
 
PPTX
怎么办StoutLetter美国威斯康星大学斯托特分校本科毕业证,Stout学历证书
Taqyea
 
PPTX
Flannel graphFlannel graphFlannel graphFlannel graphFlannel graph
shareesh25
 
PDF
Development of Portable Spectometer For MIlk Qulaity analysis
ppr9495
 
PPT
Computer Hardware and Software Hw and SW .ppt
MuzaFar28
 
PDF
Utility Software hshdgsvcjdgvbdvcfkcdgdc
imeetrinidadfuertesa
 
PPTX
美国学位证(UDel毕业证书)特拉华大学毕业证书如何办理
Taqyea
 
PPTX
哪里购买澳洲学历认证查询伊迪斯科文大学成绩单水印ECU录取通知书
Taqyea
 
ualities-of-Quantitative-Research-1.pptx
jamjamkyong
 
英国学位证(PSU毕业证书)普利茅斯大学毕业证书如何办理
Taqyea
 
Contingency-Plan-and-Reminders-from-the-PMO.pptx
PrincessCamilleGalle1
 
(1) Chemotherapeutic drugs Antimicrobials.ppt
mkurdi133
 
Confined Space.ppth. Bbbb. Bbbbbbbbbbbbbbbbbbbbbbbnnnjjj
eshaiqbal7
 
it_14.ppt using atharva college of engineering
shkzishan810
 
西班牙维尔瓦大学电子版毕业证{UHU毕业完成信UHU水印成绩单}原版制作
Taqyea
 
Dock Line Organization Made Easy – Discover AMARREX, the Mooring Line Holder ...
Seawatt
 
diagnosisinfpdpart1-200628063900 (1).pptx
JayeshTaneja4
 
英国学位证(LTU毕业证书)利兹三一大学毕业证书如何办理
Taqyea
 
怎么办StoutLetter美国威斯康星大学斯托特分校本科毕业证,Stout学历证书
Taqyea
 
Flannel graphFlannel graphFlannel graphFlannel graphFlannel graph
shareesh25
 
Development of Portable Spectometer For MIlk Qulaity analysis
ppr9495
 
Computer Hardware and Software Hw and SW .ppt
MuzaFar28
 
Utility Software hshdgsvcjdgvbdvcfkcdgdc
imeetrinidadfuertesa
 
美国学位证(UDel毕业证书)特拉华大学毕业证书如何办理
Taqyea
 
哪里购买澳洲学历认证查询伊迪斯科文大学成绩单水印ECU录取通知书
Taqyea
 

Backup and Restore of database on 2-Node RAC

  • 1. Backup and Restore of database on 2-Node RAC Introduction: This document provides a high level overview and steps to restore a 2-node RAC database which we did in one of our environments recently. Environment Details: DBName : TEST1 Oracle version: 11gR2 Steps: 1. Take a backup of the database or else use the last successful backup from tape / disk 2. Created the parameter file with the bare minimum parameters for the database to startup. vi initTEST1.ora *.audit_file_dest='/u01/app/oracle/admin/TEST1/adump' *.audit_trail='db' *.compatible='11.2.0.2.0' *.control_files='+DATA','+FRA' *.db_block_size=8192 *.db_create_file_dest='+DATA' *.db_create_online_log_dest_1='+DATA' *.db_name='RAC' *.diagnostic_dest='/u01/app/oracle' *.log_archive_dest_1='LOCATION=+FRA' *.log_archive_format='%t_%s_%r.dbf' *.memory_target=1658847232 *.open_cursors=300 *.processes=150 *.remote_login_passwordfile='EXCLUSIVE' *.undo_tablespace='UNDOTBS1' *.cluster_database=false 3. Start the database in NOMOUNT stage for restore and recovery from the backup: [oracle@MYHOST1 dbs]$ sqlplus / as sysdba SQL*Plus: Release 11.2.0.2.0 Production on Thu Aug 1 05:58:30 2013 Copyright (c) 1982, 2009, Oracle. All rights reserved. Connected to an idle instance. SQL> startup nomount pfile='initTEST1.ora'
  • 2. ORACLE instance started. Total System Global Area 1653518336 bytes Fixed Size 2213896 bytes Variable Size 956303352 bytes Database Buffers 687865856 bytes Redo Buffers 7135232 bytes SQL> exit 4. Connect to the Oracle Recovery Manager and restore the control file associated with the recent backup that is planned to be restored. Connect to RMAN: [oracle@MYHOST1 dbs]$ rman target / Recovery Manager: Release 11.2.0.2.0 - Production on Thu Aug 1 05:59:28 2013 Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved. connected to target database: RAC (not mounted) RMAN> restore controlfile from autobackup Starting restore at 17-JUN-14 using target database control file instead of recovery catalog allocated channel: ORA_DISK_1 channel ORA_DISK_1: SID=29 device type=DISK channel ORA_DISK_1: restoring control file channel ORA_DISK_1: restore complete, elapsed time: 00:00:08 output file name=+DATA/TEST1/controlfile/current.236.7445645 output file name=+FRA/TEST1/controlfile/current.235.7445645 Finished restore at 17-JUN-14 RMAN> alter database mount; database mounted released channel: ORA_DISK_1 5. Initiate a restore of the database once the control file is restored and the DB is in mount state as shown below. RMAN> restore database; Starting restore at 17-JUN-14 allocated channel: ORA_DISK_1 channel ORA_DISK_1: SID=29 device type=DISK channel ORA_DISK_1: starting datafile backup set restore channel ORA_DISK_1: specifying datafile(s) to restore from backup set channel ORA_DISK_1: restoring datafile 00001 to +DATA/TEST1/system.356.1123822
  • 3. channel ORA_DISK_1: restoring datafile 00004 to +DATA/TEST1/users. 356.1223822 channel ORA_DISK_1: reading from backup piece channel ORA_DISK_1: piece channel ORA_DISK_1: restored backup piece 1 channel ORA_DISK_1: restore complete, elapsed time: 00:00:45 channel ORA_DISK_1: starting datafile backup set restore channel ORA_DISK_1: specifying datafile(s) to restore from backup set channel ORA_DISK_1: restoring datafile 00003 to +DATA/rac/datafile/undotbs1.314.822277039 channel ORA_DISK_1: restoring datafile 00005 to +DATA/rac/datafile/undotbs2.315.822277039 channel ORA_DISK_1: reading from backup piece channel ORA_DISK_1: piece channel ORA_DISK_1: restored backup piece 1 channel ORA_DISK_1: restore complete, elapsed time: 00:00:15 channel ORA_DISK_1: starting datafile backup set restore channel ORA_DISK_1: specifying datafile(s) to restore from backup set channel ORA_DISK_1: restoring datafile 00002 to +DATA/ TEST1/sysaux.311.822277081 channel ORA_DISK_1: reading from backup piece channel ORA_DISK_1: piece channel ORA_DISK_1: restored backup piece 1 channel ORA_DISK_1: restore complete, elapsed time: 00:00:36 Finished restore at 17-JUN-14 Recover the database RMAN> recover database; Starting recover at 17-JUN-14 using channel ORA_DISK_1 starting media recovery archived log for thread 1 with sequence 8 is already on disk as file +FRA/TEST1/2014_06_17/thread_1_seq_8.412.822282953 archived log for thread 2 with sequence 6 is already on disk as file +FRA/TEST1/2014_06_17/thread_2_seq_6.413.822282955 archived log file name=+FRA/TEST1/2014_06_17/thread_1_seq_8.412.822282953 thread=1 sequence=8 archived log file name=+FRA/TEST1/2014_06_17/thread_2_seq_6.413.822282955 thread=2 sequence=6 archived log file name=+FRA/TEST1/2014_06_17/thread_1_seq_9.415.822287039 thread=1 sequence=9 archived log file name=+FRA/TEST1/2014_06_17/thread_2_seq_7.414.822286061 thread=2 sequence=7 unable to find archived log archived log thread=2 sequence=8 6. Open the database with resetlogs:
  • 4. RMAN> alter database open resetlogs; database opened RMAN> exit Recovery Manager complete. 7. Start the database SQL> startup ORACLE instance started. Total System Global Area 1068937216 bytes Fixed Size 2220200 bytes Variable Size 616566616 bytes Database Buffers 444596224 bytes Redo Buffers 5554176 bytes Database mounted. Database opened. 8. Once the DB is started, add the entries and start using the server control utility. Start the database using SRVCTL: [oracle@MYHOST1 dbs]$ srvctl status database -d RAC Instance TEST1 is not running on node MYHOST1 [oracle@MYHOST1 dbs]$ srvctl start database -d RAC [oracle@MYHOST1 dbs]$ srvctl status database -d RAC Instance TEST1 is running on node MYHOST1