Loading...
Characteristics
Corporate Training
Online Training
Oracle
Oracle Database
Oracle RAC
Overview
RAC
Real Application Clusters
RMAN Duplicate
VirtualNuggets
https://oracleraconlinetraining.blogspot.com/2016/06/rman-duplicate-without-database-connection.html
Prior versions of Oracle required a connection to the TARGET and optional rman catalog for duplicate database.
In 11GR2, we can perform RMAN duplicate database to a new server without connecting to the target database or a recovery catalog.
Steps to be follow.
1) Take backup of the database.
RMAN> Configure controlfile autobackup on;
RMAN> backup database plus archivelog;
2) Copy the backupsets to auxilliary server. ( In this example to /orabackup directory)
3) Create an init.ora for duplicate database.
4) Start auxilliary instance
$ export ORACLE_SID=NEWDB
$ sqlplus "/ as sysdba"
SQL> startup nomount;
5) Start rman and connect to auxiliary instance
rman auxiliary /
RMAN> DUPLICATE DATABASE TO NEWDB BACKUP LOCATION '/orabackup/' NOFILENAMECHECK
Characteristics,
Corporate Training,
Online Training,
Oracle,
Oracle Database,
Oracle RAC,
Overview,
RAC,
Real Application Clusters,
RMAN Duplicate,
VirtualNuggets
VirtualNuggets
467623583597876615
Post a Comment
Home
item
Popular Posts
-
Prior versions of Oracle required a connection to the TARGET and optional rman catalog for duplicate database. In 11GR2, we can perfor...
-
Oracle Real Application Clusters (RAC) is the foundation for data center high availability (HA). Based on Oracle Grid Infrastructure as it...
-
A cluster involves various interconnected PCs or servers that show up as though they are one server to end clients and applications. Oracl...
-
1. Where are the Clusterware files stored on a RAC environment? The Clusterware is installed on each node (on an Oracle Home) and on t...
-
1. Is it possible to use ASM for the OCR and voting disk? No, the OCR and voting disk must be on raw or CFS (cluster file system). 2...
-
1) Expdp with Include. expdp test/test directory=dp_dir dumpfile=tabs_test_31dec13.dmp logfile=tabs_test_31dec13.log include=TABLE: ...
-
There are two system profile options that can be used to change look and feel. 1. Java Look and Feel. -Java Look and Feel can have...
-
1. When to use raw over CFS? Always when CFS is not available or not supported by Oracle. The performance is very, very important: Raw...