ASM migration process

Size: px
Start display at page:

Download "ASM migration process"

Transcription

1 Management on Dell/EMC Storage Arrays By Zafar Mahmood, Uday Datta Shet, and Bharat Sajnani ASM migration process The process for migrating an Oracle Real Application Clusters (RAC) database from Oracle Cluster File System (OCFS) to Oracle Automatic Storage Management (ASM) involves the following major steps: /dev/raw/asm1 /dev/emcpowerb1 /dev/raw/asm2 /dev/emcpowerc1 4. Restart the raw device binding service on all nodes in the cluster: service rawdevices restart 1. Add and prepare the additional shared storage to store the database files using ASM on all nodes. 2. Create ASM cluster instances on all RAC nodes with required ASM disk groups. 3. Start the ASM cluster instances on all RAC nodes and mount the newly created ASM disk groups. 4. Register the newly created ASM instances with Oracle Cluster Ready Services (CRS). 5. Prepare the existing OCFS-based RAC database for migration. 6. Migrate the OCFS-based RAC database files to ASM-managed disk groups using the Oracle Recovery Manager (RMAN) utility. 7. Perform the following post-migration steps: a. Create a new temporary tablespace, which resides in an ASM disk group. b. Re-create the online redo log files on an ASM disk group. c. Migrate the server parameter file (spfile) from OCFS to an ASM disk group. (This step is optional.) 8. Perform verification checks on the migrated database. 9. Remove the database files residing on OCFS volumes to reclaim the disk space for further expansion of ASM disk groups. Step 1: Preparing additional storage for ASM Administrators can add storage to the shared storage system and make it available for ASM by following these steps: 1. Issue the following commands as user root to change the names of the raw devices to easily recognizable ASM device names: mv /dev/raw/raw4 /dev/raw/asm1 Note: In this example, the raw devices interface is used to prepare the ASM disk groups. Administrators also have the option of using the ASM library driver interface, which is available from the Oracle Technology Network, to prepare the additional storage. The raw devices interface was used in this migration example because, at the time of publication, EMC PowerPath software did not support the ASM library interface. Step 2: Creating ASM cluster instances on RAC nodes An Oracle parameter file, such as the one shown in Figure A, can be used to create the ASM instance on all nodes in the cluster. In environments in which a large number of ASM disk groups need to be created, administrators may need to set a larger value for the LARGE_POOL_SIZE parameter from the default value of 12 MB. This file should be created in $ORACLE_HOME/dbs as init+asmnode number.ora on all nodes in the cluster. For example, the file shown in Figure A should be created on node 1. $ORACLE_HOME/dbs/init+ASM1.ora *.asm_diskgroups='data','recovery' *.asm_diskstring='/dev/raw/asm*' *.background_dump_dest='/opt/oracle/admin/+asm/bdump' *.cluster_database=true *.core_dump_dest='/opt/oracle/admin/+asm/cdump' +ASM2.instance_number=2 +ASM1.instance_number=1 *.instance_type='asm' *.large_pool_size=20m *.remote_login_passwordfile='exclusive' *.user_dump_dest='/opt/oracle/admin/+asm/udump' mv /dev/raw/raw5 /dev/raw/asm2 2. Make the user named oracle the owner of the newly added devices: chown oracle.dba /dev/raw/asm* 3. Edit the /etc/sysconfig/rawdevices file and add an entry for each storage device to be used with ASM: Figure A. Creating an ASM instance on node 1 Next, administrators should create ASM instance dump files and alert log file destination folders on all nodes: mkdir -p /opt/oracle/admin/+asm/udump mkdir -p /opt/oracle/admin/+asm/cdump mkdir -p /opt/oracle/admin/+asm/bdump August 2005 Reprinted from Dell Power Solutions, August Copyright 2005 Dell Inc. All rights reserved. DELL POWER SOLUTIONS 1

2 Then, administrators should start the ASM instance named +ASM1 on the first node and create the disk groups, as shown in Figure B. Step 3: Starting ASM cluster instances and mounting ASM disk groups The ASM instances should be started on all nodes in the cluster, and the ASM disk groups should be made available for the database file storage. Optionally, administrators can create the Oracle server parameter file (spfile) from the parameter file (pfile) to help ease ASM instance management: Next, administrators should restart ASM using the server control utility to enable the ASM CRS configuration: srvctl start asm -n zaf1850-pub srvctl start asm -n zaf2850-pub Step 5: Preparing the OCFS-based RAC database for migration Administrators must ensure the OCFS database is running by connecting as a user with sysdba privileges. Next, they should determine whether block change tracking is disabled, which is the default setting: SQL> create spfile='/dev/raw/spfile+asm.ora' from pfile; Next, administrators should edit $ORACLE_HOME/dbs/init+ ASM1.ora and point to the spfile file: spfile='/dev/raw/spfile+asm.ora' Similarly, administrators should edit the init+asm2.ora file on the second node and point to the shared spfile. Step 4: Registering ASM instances with Oracle Cluster Ready Services In the fourth step, administrators should register ASM instances with Oracle CRS so that ASM can automatically start at each reboot, as shown in Figure C. SQL> select status from v$block_change_tracking; STATUS DISABLED Administrators should shut down the database on all nodes: srvctl stop database -d zafdb Next, they should start one of the database instances in nomount state, and then modify the database server parameter to point to the ASM disk groups and enable the use of Oracle Managed Files (OMF), as shown in Figure D. [oracle@zaf1850-pub dbs]$ export ORACLE_SID=+ASM1 [oracle@zaf1850-pub dbs]$ sqlplus "/as sysdba" SQL> startup nomount; ASM instance started SQL> create diskgroup DATA external redundancy disk '/dev/raw/asm1'; SQL> create diskgroup RECOVERY external redundancy disk '/dev/raw/asm2'; Figure B. Starting the ASM instance and creating disk groups [oracle@zaf1850-pub dbs]$ srvctl add asm -n zaf1850-pub -i +ASM1 -o $ORACLE_HOME [oracle@zaf1850-pub dbs]$ srvctl add asm -n zaf2850-pub -i +ASM2 -o $ORACLE_HOME [oracle@zaf1850-pub oracle]$ srvctl enable asm -n zaf1850-pub -i +ASM1 [oracle@zaf1850-pub oracle]$ srvctl enable asm -n zaf2850-pub -i +ASM2 Figure C. Registering ASM instances with Oracle CRS August 2005 Reprinted from Dell Power Solutions, August Copyright 2005 Dell Inc. All rights reserved. DELL POWER SOLUTIONS 2

3 oracle]$ sqlplus "/as sysdba" SQL> startup nomount SQL> alter system set control_files='+data/control.ctl' scope=spfile sid='*'; SQL> alter system set db_create_file_dest='+data' scope=spfile sid='*'; SQL> alter system set db_create_online_log_dest_1='+data' scope=spfile sid='*'; SQL> alter system set log_archive_dest_1='location=+recovery' scope=spfile sid='*'; SQL> alter system set db_recovery_file_dest='+recovery' scope=spfile sid='*'; Figure D. Preparing the OCFS-based RAC database for migration Finally, administrators should shut down the instance: SQL> shutdown immediate; Step 6: Migrating OCFS-based RAC database files to ASM In the sixth step, administrators invoke the RMAN utility and start up the database in nomount state: Step 7: Performing post-migration steps Once migration is completed, administrators should perform the following tasks. Create the temporary tablespace. The temporary tablespace and the redo log files must be relocated and created on an ASM disk group to complete the migration process. To do so, administrators should take the following steps: oracle]$ rman RMAN> connect target RMAN> startup nomount; 1. Exit RMAN and open the database on one of the nodes: SQL> alter database open; First, administrators should migrate the control file from the OCFS location to the +DATA disk group: RMAN> restore controlfile from '/u03/zafdb/control01.ctl'; Then, they must mount the database: RMAN> alter database mount; Next, administrators should copy the existing database files into the new ASM disk group (this will retain the existing files): 2. Create the temporary tablespace in an ASM disk group: SQL> create temporary tablespace temp_asm tempfile '+DATA' size 100m; 3. Make the new temporary tablespace the default temporary tablespace for the database and drop the old temporary tablespace, which was on an OCFS volume: SQL> alter database default temporary tablespace temp_asm; SQL> drop tablespace temp; RMAN> backup as copy database format '+DATA'; Finally, they should switch the database files into the new ASM disk group named +DATA : RMAN> switch database to copy; Re-create the online redo log files. Before dropping and recreating the online redo log files, administrators should take the following steps: 1. Archive the online redo log files and then stop the archiving process: Once this step is completed, all data files will have been migrated to the ASM disk group. The original data files stored on OCFS volumes will be cataloged as data file copies, so administrators can use them as backup, or they can use them to migrate back to the former storage system. SQL> alter system archive log all; SQL> alter system archive log stop; 2. Create online redo log files in the +DATA ASM disk group using separate ASM directories for each instance. Connect to August 2005 Reprinted from Dell Power Solutions, August Copyright 2005 Dell Inc. All rights reserved. DELL POWER SOLUTIONS 3

4 SQL> col member format a25 SQL> select lf.member, l.bytes, l.group#, l.thread# from v$logfile lf, v$log l where lf.group# = l.group# and lf.type = 'ONLINE' order by l.thread#, l.sequence#; MEMBER BYTES GROUP# THREAD# /u03/zafdb/redo01.log /u03/zafdb/redo02.log /u03/zafdb/redo03.log /u03/zafdb/redo04.log Figure E. Obtaining information about existing log files SQL> select group#, status from v$log; GROUP# STATUS INACTIVE 2 INACTIVE 3 INACTIVE 4 CURRENT 5 ACTIVE 6 CURRENT SQL> alter database drop logfile group 1; SQL> alter database drop logfile group 2; the ASM instance on any node: SQL> alter diskgroup DATA add directory '+DATA/zafdb/log1'; SQL> alter diskgroup DATA add directory '+DATA/zafdb/log2'; 3. Find the number, size, thread, and group information for the existing log files so that they can be re-created on the ASM disk group, as shown in Figure E. 4. Create the redo log files for both threads (thread 1 is zafdb1 and thread 2 is zafdb2, respectively) on ASM disk groups and folders previously created: SQL> alter database add logfile thread 1 group 5 Figure F. Creating new log file groups on ASM disk groups ('+DATA/zafdb/log1/log11.log') size 10240K, group 6 ('+DATA/zafdb/log1/log12.log') size SQL> select group#, status from v$log; GROUP# STATUS INACTIVE 5 INACTIVE 6 CURRENT 7 ACTIVE 8 CURRENT 10240K; 5. Perform a log file switch twice to make the newly created log file groups 5 and 6 active and current, respectively. Drop the old redo log file groups 1 and 2 once they are inactive. Figure F shows these steps. 6. Similarly, create the log files for thread 2: SQL> alter database add logfile thread 2 group 7 ('+DATA/zafdb/log2/log21') size 10240K, group 8 ('+DATA/zafdb/log2/log22') size 10240K; SQL> alter database drop logfile group 3; SQL> alter database drop logfile group 4; Figure G. Making existing log file groups inactive 7. Start up the other instance and switch the log files for instance 2 (zafdb2) twice to make the existing log file groups inactive (this operation must be performed from the second instance). Figure G shows these steps. August 2005 Reprinted from Dell Power Solutions, August Copyright 2005 Dell Inc. All rights reserved. DELL POWER SOLUTIONS 4

5 SQL> select member from v$logfile; MEMBER +DATA/zafdb/log2/log21 +DATA/zafdb/log2/log22 +DATA/zafdb/log1/log11.log +DATA/zafdb/log1/log12.log SQL> select name from v$datafile; +DATA/zafdb/datafile/system DATA/zafdb/datafile/undotbs DATA/zafdb/datafile/sysaux DATA/zafdb/datafile/undotbs DATA/zafdb/datafile/users DATA/zafdb/datafile/data DATA/zafdb/datafile/load SQL> select name from v$controlfile; +DATA/control.ctl SQL> select name, status from v$tempfile; Migrate the server parameter file. Unlike the previous two tasks, this task is optional. Administrators can migrate the spfile server parameter file from OCFS to an ASM disk group by entering the following in the Oracle SQL*Plus command line: SQL> create pfile='/home/oracle/pfile_asm_final. ora' from spfile; SQL> create spfile='+data/zafdb/spfilezafdb.ora' FROM pfile='/home/oracle/pfile_asm_final.ora'; They should then change the $ORACLE_HOME/dbs/initzafdb.ora file and point to the new location of the spfile: SPFILE='/u03/zafdb/spfilezafdb.ora' OLD SPFILE='+DATA/zafdb/spfilezafdb.ora' NEW Step 8: Verifying the migrated database In the eighth step, administrators should make sure that all redo log and database files have been migrated to the ASM disk group, as shown in Figure H. Next, administrators should try shutting down and restarting the database before deleting the old OCFS files and volumes (see Figure I). Step 9: Removing database files on OCFS In the final step, administrators should reclaim the space used by the OCFS volumes, remove the original OCFS database files, and then remove the OCFS volumes: STATUS dbs]$ rman target / RMAN> delete copy of database; +DATA/zafdb/tempfile/temp_asm ONLINE Figure H. Verifying the database that has been migrated to ASM [oracle@zaf1850-pub dbs]$ srvctl stop database -d zafdb [oracle@zaf1850-pub dbs]$ srvctl start database -d zafdb [oracle@zaf1850-pub dbs]$ srvctl status database -d zafdb Instance zafdb1 is running on node zaf1850-pub Instance zafdb2 is running on node zaf2850-pub Figure I. Shutting down and restarting the ASM-managed database August 2005 Reprinted from Dell Power Solutions, August Copyright 2005 Dell Inc. All rights reserved. DELL POWER SOLUTIONS 5

Oracle Database 10g Migration to Automatic Storage Management. An Oracle White Paper August 2005

Oracle Database 10g Migration to Automatic Storage Management. An Oracle White Paper August 2005 Oracle Database 10g Migration to Automatic Storage Management An Oracle White Paper August 2005 Oracle Database 10g Migration to Automatic Storage Management Introduction... 3 Database Migration to ASM

More information

Oracle Database 10g Migration to Automatic Storage Management. An Oracle White Paper August 2004

Oracle Database 10g Migration to Automatic Storage Management. An Oracle White Paper August 2004 Oracle Database 10g Migration to Automatic Storage Management An Oracle White Paper August 2004 Oracle Database 10g Migration to Automatic Storage Management Executive Overview... 3 Introduction... 3 Database

More information

Disaster Recovery: Restore Database from One Server to another Server when Different Location

Disaster Recovery: Restore Database from One Server to another Server when Different Location Disaster Recovery: Restore Database from One Server to another Server when Different Location Mohamed Azar Oracle DBA http://mohamedazar.wordpress.com 1 Mohamed Azar http://mohamedazar.wordpress.com Step

More information

Migrate Databases to Exadata Using RMAN Duplicate

Migrate Databases to Exadata Using RMAN Duplicate Migrate Databases to Exadata Using RMAN Duplicate BY UMAIR MANSOOB Who Am I Oracle Certified Administrator from Oracle 7 12c Exadata Certified Implementation Specialist since 2011 Oracle Database Performance

More information

Steps how to duplicate a database to a new machine. Version 10gR2

Steps how to duplicate a database to a new machine. Version 10gR2 Steps how to duplicate a database to a new machine. Version 10gR2 First take a fresh backup of the target database set the ORACLE_* variables If the databse is running in noarchivelog mode, shut it down

More information

Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 5

Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 5 Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 5 CHECKLIST 5-1 Migration Preparation Operations 1 Capture database file metadata 2 Verify COMPATIBLE setting 3 Create INCREMENTAL

More information

MIGRATION FROM RAW DEVICES TO ASMLib, STEP BY STEP EXAMPLE

MIGRATION FROM RAW DEVICES TO ASMLib, STEP BY STEP EXAMPLE MIGRATION FROM RAW DEVICES TO ASMLib, STEP BY STEP EXAMPLE Alejandro Vargas Oracle Israel PRE MIGRATION STEPS... 1 Install and configure ASMLib on both servers... 1 MIGRATION STEPS... 4 REMOVE RAW DEVICES

More information

Recovering Oracle Databases

Recovering Oracle Databases CHAPTER 20 Recovering Oracle Databases In this chapter you will learn how to Recover from loss of a controlfile Recover from loss of a redo log file Recover from loss of a system-critical datafile Recover

More information

LOSS OF FULL DATABASE AND DATABASE RECOVERY ORACLE 11g

LOSS OF FULL DATABASE AND DATABASE RECOVERY ORACLE 11g CONNECT TO TARGET DATABASE USING RMAN $ export ORACLE_SID=crms $ rlrman target / Recovery Manager: Release 11.2.0.1.0 - Production on Sat Jan 31 10:13:56 2015 Copyright (c) 1982, 2009, Oracle and/or its

More information

Author A.Kishore Single instance to RAC conversion Introduction... 2

Author A.Kishore  Single instance to RAC conversion Introduction... 2 CONTENTS Single instance to RAC conversion... 2 Introduction... 2 Setup Create a Single instance database (filesystem) using dbca... 3 Verify the Single instance file system... 12 Verify you have sufficient

More information

RECO CKPT SMON ARCH PMON RMAN DBWR

RECO CKPT SMON ARCH PMON RMAN DBWR Database Architecture t Architecture Topics Memory Structure Background Processes Database Accessing Database Information Starting the Database SMON PMON DBWR LGWR Parameter Database Architecture SNPn

More information

ORACLE 11gR2 DBA. by Mr. Akal Singh ( Oracle Certified Master ) COURSE CONTENT. INTRODUCTION to ORACLE

ORACLE 11gR2 DBA. by Mr. Akal Singh ( Oracle Certified Master ) COURSE CONTENT. INTRODUCTION to ORACLE ORACLE 11gR2 DBA by Mr. Akal Singh ( Oracle Certified Master ) INTRODUCTION to ORACLE COURSE CONTENT Exploring the Oracle Database Architecture List the major architectural components of Oracle Database

More information

How to Recover the lost current control file, or the current control file is inconsistent with files that you need to recover??

How to Recover the lost current control file, or the current control file is inconsistent with files that you need to recover?? How to Recover the lost current control file, or the current control file is inconsistent with files that you need to recover?? If it is multiplexed then replace the lost one with the available one else

More information

Author A.Kishore Convert 11gR2 non-rac database to RAC database using rconfig

Author A.Kishore   Convert 11gR2 non-rac database to RAC database using rconfig Convert 11gR2 non-rac database to RAC database using rconfig I ve installed the new 11gR2 clustered ORACLE_HOME at /d01/oracle/app/oracle/product/11.2.0/dbhome_1 on both the nodes linux1 and linux2 New

More information

Oracle RMAN for Absolute Beginners

Oracle RMAN for Absolute Beginners Oracle RMAN for Absolute Beginners Darl Kuhn Apress Contents About the Author Acknowledgments Introduction xvii xix xxi Chapter 1: Getting Started... 1 Connecting to Your Database 1 Establishing OS Variables

More information

Managing an Oracle Instance

Managing an Oracle Instance Managing an Oracle Instance Date: 07.10.2009 Instructor: SL. Dr. Ing. Ciprian Dobre 1 Objectives After completing this lesson, you should be able to do the following: Create and manage initialization parameter

More information

Oracle Clustering: Oracle 11g Real Application Clusters for Administrators

Oracle Clustering: Oracle 11g Real Application Clusters for Administrators Oracle Clustering: Oracle 11g Real Application Clusters for Administrators Duration: 40Hrs (8 Hours per Day * 5 Days) Oracle 11g Clustering Overview Introduction to Oracle 11g Clusters for Administrators

More information

Oracle EXAM - 1Z Oracle Real Application Clusters 11g Release 2 and Grid Infrastructure Administration. Buy Full Product

Oracle EXAM - 1Z Oracle Real Application Clusters 11g Release 2 and Grid Infrastructure Administration. Buy Full Product Oracle EXAM - 1Z0-058 Oracle Real Application Clusters 11g Release 2 and Grid Infrastructure Administration Buy Full Product http://www.examskey.com/1z0-058.html Examskey Oracle 1Z0-058 exam demo product

More information

ALTER DATABASE RECOVER TO LOGICAL STANDBY KEEP IDENTITY;

ALTER DATABASE RECOVER TO LOGICAL STANDBY KEEP IDENTITY; Using Physical Standby with transient Logical Standby (SQL Apply for near zero downtime upgrade of two node Oracle RAC database from 11.2.0.2 to 11.2.0.3 In the article you will have a look at an example

More information

Oracle Database Appliance: Implementing Disaster Recovery Solutions Using Oracle Data Guard

Oracle Database Appliance: Implementing Disaster Recovery Solutions Using Oracle Data Guard Oracle Database Appliance: Implementing Disaster Recovery Solutions Using Oracle Data Guard Protect production systems while leveraging standby computing power ORACLE WHITE PAPER SEPTEMBER 2017 Introduction

More information

Cloning an Oracle Database to the Same Server Using FlashCopy and VolumeCopy on DS3400, DS4000, and DS5000

Cloning an Oracle Database to the Same Server Using FlashCopy and VolumeCopy on DS3400, DS4000, and DS5000 Cloning an Oracle Database to the Same Server Using FlashCopy and VolumeCopy on DS3400, DS4000, and DS5000 Technical White Paper 40563-00 Rev B December 2009 Copyright 2009 by International Business Machines

More information

Performing a 32 bit to 64 bit migration using the Transportable Database RMAN feature

Performing a 32 bit to 64 bit migration using the Transportable Database RMAN feature Performing a 32 bit to 64 bit migration using the Transportable Database RMAN feature This note describes the procedure used to perform a 32 bit to 64 bit conversion of an 11.2.0.3 database on the Linux

More information

TestsDumps. Latest Test Dumps for IT Exam Certification

TestsDumps.  Latest Test Dumps for IT Exam Certification TestsDumps http://www.testsdumps.com Latest Test Dumps for IT Exam Certification Exam : 1z1-062 Title : Oracle Database 12c: Installation and Administration Vendor : Oracle Version : DEMO Get Latest &

More information

Agent for Oracle. Arcserve Backup for Windows r17.5

Agent for Oracle. Arcserve Backup for Windows r17.5 Agent for Oracle Arcserve Backup for Windows r17.5 Legal Notices This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

TestsDumps. Latest Test Dumps for IT Exam Certification

TestsDumps.  Latest Test Dumps for IT Exam Certification TestsDumps http://www.testsdumps.com Latest Test Dumps for IT Exam Certification Exam : 1z1-067 Title : Upgrade Oracle9i/10g/11g OCA to Oracle Database 12c OCP Vendor : Oracle Version : DEMO 1 NO.1 Examine

More information

Explore the Oracle 10g database architecture. Install software with the Oracle Universal Installer (OUI)

Explore the Oracle 10g database architecture. Install software with the Oracle Universal Installer (OUI) Oracle DBA (10g, 11g) Training Course Content Introduction (Database Architecture) Describe course objectives Explore the Oracle 10g database architecture Installing the Oracle Database Software Explain

More information

9i RAC: Manual Backup and Recovery Shankar Govindan

9i RAC: Manual Backup and Recovery Shankar Govindan 9i RAC: Manual Backup and Recovery Shankar Govindan Introduction When we plan to move a large database or a heavily used OLTP database to a cluster setup, to get enough mileage from the horizontal scaling

More information

FLASHBACK RAC DATABASE TO RESTORE POINT Y. MORAN

FLASHBACK RAC DATABASE TO RESTORE POINT Y. MORAN I could not find any relevant documanet of RAC - Flashback on the net. So, I want to share my experiances with you. Check crs status. ora...t2.inst application ONLINE ONLINE rcnode2 Shutdown the database

More information

Maximum Availability Architecture. Oracle Best Practices For High Availability

Maximum Availability Architecture. Oracle Best Practices For High Availability MAA / Data Guard 10g Release 2 Setup Guide Creating a RAC Logical Standby for a RAC Primary Oracle Maximum Availability Architecture White Paper May 2006 Maximum Availability Architecture Oracle Best Practices

More information

Actual4Test. Actual4test - actual test exam dumps-pass for IT exams

Actual4Test.   Actual4test - actual test exam dumps-pass for IT exams Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : 1z1-063 Title : Oracle Database 12c: Advanced Administration Vendor : Oracle Version : DEMO Get Latest

More information

1Z Upgrade to Oracle Database 12cm Exam Summary Syllabus Questions

1Z Upgrade to Oracle Database 12cm Exam Summary Syllabus Questions 1Z0-060 Upgrade to Oracle Database 12cm Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-060 Exam on Upgrade to Oracle Database 12c... 2 Oracle 1Z0-060 Certification Details:... 2

More information

Purpose. Configuring ARCHIVELOG mode

Purpose. Configuring ARCHIVELOG mode Purpose This document provides a guide to setting up the backup process specific to Oracle Database Standard Edition One on Dell servers. The following backup process takes advantage of the new Oracle

More information

ORACLE DBA TRAINING IN BANGALORE

ORACLE DBA TRAINING IN BANGALORE ORACLE DBA TRAINING IN BANGALORE TIB ACADEMY #5/3 BEML LAYOUT, VARATHUR MAIN ROAD KUNDALAHALLI GATE, BANGALORE 560066 PH: +91-9513332301/2302 WWW.TRAININGINBANGALORE.COM Oracle DBA Training Syllabus Introduction

More information

Author A.Kishore

Author A.Kishore Introduction Oracle Data Guard (known as Oracle Standby Database prior to Oracle9i), forms an extension to the Oracle RDBMS and provides organizations with high availability, data protection, and disaster

More information

Oracle Exam 11gocmu Oracle Database 11g Certified Master Upgrade Exam Version: 4.0 [ Total Questions: 671 ]

Oracle Exam 11gocmu Oracle Database 11g Certified Master Upgrade Exam Version: 4.0 [ Total Questions: 671 ] s@lm@n Oracle Exam 11gocmu Oracle Database 11g Certified Master Upgrade Exam Version: 4.0 [ Total Questions: 671 ] Topic break down Topic No. of Questions Topic 1: Pool 1 112 Topic 2: Pool 2 100 Topic

More information

Insanity: doing the same thing over and over again and expecting different results. Nice Proverb

Insanity: doing the same thing over and over again and expecting different results. Nice Proverb Insanity: doing the same thing over and over again and expecting different results. Nice Proverb No back up was taken after reset logs. How to recover the database? Solution It s possible, I have tried

More information

A. Automatic memory management is disabled because PGA_AGGREGATE_TARGET and SGA_TARGET are not set.

A. Automatic memory management is disabled because PGA_AGGREGATE_TARGET and SGA_TARGET are not set. Volume: 148 Questions Question No : 1 memory_target big integer 808M pga_aggregate_target big integer 0 sga_target big integer 0 SQL> SHOW PARAMETER SGA_MAX_SIZE NAME TYPE VALUE sga_max_size big integer

More information

for RAC migrations WLCG Service Reliability Workshop CERN, November 30 th, 2007 Jacek Wojcieszuk, CERN IT LCG

for RAC migrations WLCG Service Reliability Workshop CERN, November 30 th, 2007 Jacek Wojcieszuk, CERN IT LCG Oracle Data Guard for RAC migrations WLCG Service Reliability Workshop CERN, November 30 th, 2007 Jacek Wojcieszuk, CERN IT LCG Outline Problem description Possible approaches Oracle Data Guard Migration

More information

HP 3PAR Recovery Manager Software for Oracle

HP 3PAR Recovery Manager Software for Oracle HP 3PAR Recovery Manager 4.2.0 Software for Oracle User s Guide Abstract This document provides the information needed to install, configure, and use the HP 3PAR Recovery Manager 4.2.0 Software for Oracle

More information

An Oracle White Paper April Deploying Oracle Data Guard with Oracle Database Appliance

An Oracle White Paper April Deploying Oracle Data Guard with Oracle Database Appliance An Oracle White Paper April 2012 Deploying Oracle Data Guard with Oracle Database Appliance Table of Contents Introduction... 2 Why do I need a standby database environment?... 2 Why Oracle Data Guard?...

More information

Course Contents of ORACLE 9i

Course Contents of ORACLE 9i Overview of Oracle9i Server Architecture Course Contents of ORACLE 9i Responsibilities of a DBA Changing DBA Environments What is an Oracle Server? Oracle Versioning Server Architectural Overview Operating

More information

Electronic Presentation

Electronic Presentation Oracle9i DBA Fundamentals I Electronic Presentation D11321GC10 Production 1.0 May 2001 D32645 I-1 Copyright Oracle Corporation, 2001. All rights reserved. I Introduction Copyright Oracle Corporation, 2001.

More information

Oracle 1Z Oracle Database 10g: Administration II. Download Full Version :

Oracle 1Z Oracle Database 10g: Administration II. Download Full Version : Oracle 1Z0-043 Oracle Database 10g: Administration II Download Full Version : https://killexams.com/pass4sure/exam-detail/1z0-043 QUESTION: 172 You lost the index tablespace in your database. You decided

More information

"Charting the Course... Oracle 18c DBA I (3 Day) Course Summary

Charting the Course... Oracle 18c DBA I (3 Day) Course Summary Oracle 18c DBA I (3 Day) Course Summary Description This course provides a complete, hands-on introduction to Oracle Database Administration including the use of Enterprise Manager (EMDE), SQL Developer

More information

Oracle Database 12C: Advanced Administration - 1Z0-063

Oracle Database 12C: Advanced Administration - 1Z0-063 Oracle Database 12C: Advanced Administration - 1Z0-063 Backup and Recovery Explain Oracle backup and recovery solutions o Describe types of database failures o Describe the tools available for backup and

More information

Using Recovery Manager with Oracle Data Guard in Oracle9i. An Oracle White Paper March 2004

Using Recovery Manager with Oracle Data Guard in Oracle9i. An Oracle White Paper March 2004 Using Recovery Manager with Oracle Data Guard in Oracle9i An Oracle White Paper March 2004 Using Recovery Manager with Oracle Data Guard in Oracle9i Executive summary... 3 Introduction... 3 Configuration

More information

INDEX SUMMARY...3 RMAN Check List...4 The Hands-On Environment...5 CATALOG...7

INDEX SUMMARY...3 RMAN Check List...4 The Hands-On Environment...5 CATALOG...7 Alejandro Vargas Principal Support Consultant Oracle Israel Support Services INDEX SUMMARY...3 RMAN Check List...4 The Hands-On Environment...5 CATALOG...7 1-set-catalog...8 2-create-catalog...9 3-register-database...10

More information

NEC istorage Series Disk Array Guide for Oracle Storage Compatibility Program Snapshot Technologies

NEC istorage Series Disk Array Guide for Oracle Storage Compatibility Program Snapshot Technologies NEC istorage Series Disk Array Guide for Oracle Storage Compatibility Program Snapshot Technologies is-wp-01-002 Rev. 1.00 Aug. 2001 NEC Solutions NEC Corporation Copyright 2001 NEC Corporation. All rights

More information

Oracle Database Administration

Oracle Database Administration A Active (Current) and Inactive Redo Log Files... 12:8 Alert and Trace Log Files... 1:34 Alert Log Files... 1:34 ALTER TABLE Statement - Reasons for using... 9:18 ALTER TABLESPACE... 7:23 Application Development...

More information

Tibero Backup & Recovery Guide

Tibero Backup & Recovery Guide Tibero Backup & Recovery Guide Copyright 2014 TIBERO Co., Ltd. All Rights Reserved. Copyright Notice Copyright 2014 TIBERO Co., Ltd. All Rights Reserved. 5, Hwangsaeul-ro 329beon-gil, Bundang-gu, Seongnam-si,

More information

Tablespace Usage By Schema In Oracle 11g Query To Check Temp

Tablespace Usage By Schema In Oracle 11g Query To Check Temp Tablespace Usage By Schema In Oracle 11g Query To Check Temp The APPS schema has access to the complete Oracle E-Business Suite data model. E-Business Suite Release 12.2 requires an Oracle database block

More information

EVault InfoStage 5.6 Oracle Plug-In for Solaris and Windows. Installation & Configuration Guide

EVault InfoStage 5.6 Oracle Plug-In for Solaris and Windows. Installation & Configuration Guide EVault InfoStage 5.6 Oracle Plug-In for Solaris and Windows Installation & Configuration Guide August 2006 This manual describes the installation and configuration of the EVault InfoStage Oracle Plug-In

More information

MBS Microsoft Oracle Plug-In 6.82 User Guide

MBS Microsoft Oracle Plug-In 6.82 User Guide MBS Microsoft Oracle Plug-In 6.82 User Guide 10 Oracle Plug-In This version of the Oracle Plug-In supports Windows Agents. It is an add-on that allows you to perform database backups on Oracle databases.

More information

Convert a Single Instance Database to Oracle RAC 10g on RHEL4 Using Grid Control

Convert a Single Instance Database to Oracle RAC 10g on RHEL4 Using Grid Control Convert a Single Instance Database to Oracle RAC 10g on RHEL4 Using Grid Control Alejandro Vargas Oracle Israel March 15, 2007 Conversion steps in brief...2 Convert Single Instance Database To Cluster

More information

These copies should be placed on different disks, if possible. Disk 1 Disk 2 Disk 3

These copies should be placed on different disks, if possible. Disk 1 Disk 2 Disk 3 DATABASE CONFIGURATIONS Configuration Topics Simple Databases with Mirroring Multiplexing Control Files and REDO Logs Disk Shadowing Database Links and Snapshots Optimal Flexible Architecture 1 Stand Alone

More information

Installing the Oracle Database Softwar

Installing the Oracle Database Softwar Contents chapter 1:Architecture Oracle Database Architecture Database Structures Oracle Memory Structures Process Structures Oracle Instance Management Server Process and Database Buffer Cache Physical

More information

ActiveImage Protector 2016R2SP1. Backup and Recovery of Oracle Database Second Edition - March 23, 2017

ActiveImage Protector 2016R2SP1. Backup and Recovery of Oracle Database Second Edition - March 23, 2017 ActiveImage Protector 2016R2SP1 Backup and Recovery of Oracle Database Second Edition - March 23, 2017 This user guide provides a description about backup and recovery procedures of Oracle database by

More information

Redefining Data Protection. Title Page. User s Guide. for the NetVault: Backup APM for Oracle. APM Version 5.5 OAG

Redefining Data Protection. Title Page. User s Guide. for the NetVault: Backup APM for Oracle. APM Version 5.5 OAG Redefining Data Protection Title Page User s Guide for the NetVault: Backup APM for Oracle APM Version 5.5 OAG-101-5.5-EN-01 06/06/08 Copyrights NetVault: Backup - User s Guide for the NetVault: Backup

More information

Cross-Platform Database Migration with Oracle Data Guard

Cross-Platform Database Migration with Oracle Data Guard Cross-Platform Database Migration with Oracle Data Guard a CERN Case Study Background Many data centers nowadays run their production Oracle database systems on commodity hardware, mostly relying on software

More information

Redefining Data Protection. Title Page. User s Guide. for the NetVault:Backup APM for Oracle. APM Version 5.1 OAG

Redefining Data Protection. Title Page. User s Guide. for the NetVault:Backup APM for Oracle. APM Version 5.1 OAG Redefining Data Protection Title Page User s Guide for the NetVault:Backup APM for Oracle APM Version 5.1 OAG-101-5.1-EN-01 01/30/08 Copyrights NetVault:Backup - User s Guide for the NetVault:Backup APM

More information

A. connecting to the target database and a recovery catalog to execute the duplicate command

A. connecting to the target database and a recovery catalog to execute the duplicate command Volume: 175 Questions Question No : 1 Which two are prerequisites for creating a backup-based duplicate database? A. connecting to the target database and a recovery catalog to execute the duplicate command

More information

1z0-063.exam. Number: 1z0-063 Passing Score: 800 Time Limit: 120 min File Version: 3.0. Oracle. 1z Oracle Database 12c: Advanced Administration

1z0-063.exam. Number: 1z0-063 Passing Score: 800 Time Limit: 120 min File Version: 3.0. Oracle. 1z Oracle Database 12c: Advanced Administration 1z0-063.exam Number: 1z0-063 Passing Score: 800 Time Limit: 120 min File Version: 3.0 Oracle 1z0-063 Oracle Database 12c: Advanced Administration Version 3.0 Exam A QUESTION 1 Examine the steps to configure

More information

Oracle 1Z Oracle 9i: New Features for Administrators. Download Full Version :

Oracle 1Z Oracle 9i: New Features for Administrators. Download Full Version : Oracle 1Z0-030 Oracle 9i: New Features for Administrators Download Full Version : https://killexams.com/pass4sure/exam-detail/1z0-030 QUESTION: 204 Which two statements regarding an external table are

More information

COPYRIGHTED MATERIAL. Using Oracle ASM. Chapter. ÛÛDatabase Architecture and ASM. Describe Automatic Storage Management (ASM)

COPYRIGHTED MATERIAL. Using Oracle ASM. Chapter. ÛÛDatabase Architecture and ASM. Describe Automatic Storage Management (ASM) Chapter 1 Using Oracle ASM Oracle Database 11g: Administration II exam objectives covered in this chapter: ÛÛDatabase Architecture and ASM NN NN NN NN Describe Automatic Storage Management (ASM) Set up

More information

Oracle Database Server 12c Pros and Cons

Oracle Database Server 12c Pros and Cons Oracle Database Server 12c Pros and Cons Hans Forbrich Forbrich Consulting Ltd Based in Alberta, Canada Fact Oracle DB 12c is the largest architectural change since Oracle8i Fact Oracle documentation

More information

1Z Oracle Real Application Clusters 12c Essentials Exam Summary Syllabus Questions

1Z Oracle Real Application Clusters 12c Essentials Exam Summary Syllabus Questions 1Z0-432 Oracle Real Application Clusters 12c Essentials Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-432 Exam on Oracle Real Application Clusters 12c Essentials... 2 Oracle 1Z0-432

More information

Configuring High Availability for the PMG DB

Configuring High Availability for the PMG DB This chapter describes the process of configuring high availability for the PMG DB. It provides the prerequisites and procedures required to configure and test the hot standby and cold standby for Cisco

More information

Oracle Database 10g Linux Deployment Guide Version 2.0

Oracle Database 10g Linux Deployment Guide Version 2.0 Dell PowerEdge Systems Oracle Database 10g Linux Deployment Guide Version 2.0 www.dell.com support.dell.com Notes and Notices NOTE: A NOTE indicates important information that helps you make better use

More information

How To Reduce Temp Tablespace Size In Oracle 11g

How To Reduce Temp Tablespace Size In Oracle 11g How To Reduce Temp Tablespace Size In Oracle 11g 12 How do I find used/free space in a TEMPORARY tablespace? One can manually increase or decrease the size of a datafile from Oracle 7.2 using. With an

More information

High Availability for Oracle 9i Using Double-Take

High Availability for Oracle 9i Using Double-Take High Availability for Oracle 9i Using Double-Take High Availability for Oracle 9i Using Double-Take Revision 2.0.0 published July 2003 NSI and Double-Take are registered trademarks of Network Specialists,

More information

Oracle Database 11g: Administration Workshop I Release 2

Oracle Database 11g: Administration Workshop I Release 2 Oracle University Contact Us: 55-800-891-6502 Oracle Database 11g: Administration Workshop I Release 2 Duration: 5 Days What you will learn This course is designed to give you a firm foundation in basic

More information

Data Guard Configuration And Operation

Data Guard Configuration And Operation Configuration And Operation Author: G S Chapman Date: 18 th December 2007 Version: 1.3 Location of Document: i DOCUMENT HISTORY Version Date Changed By: Remarks 1.0 14/02/06 G S Chapman Original Version

More information

Disaster Recovery Strategies for RAC on Oracle SE Arjen Visser Dbvisit Software Limited

Disaster Recovery Strategies for RAC on Oracle SE Arjen Visser Dbvisit Software Limited Disaster Recovery Strategies for RAC on Oracle SE Arjen Visser Dbvisit Software Limited Keywords Oracle RAC on Standard Edition Standby Database with RAC on Standard Edition Different standby database

More information

Notice the oratab file doesn t contain the new database name (BDEV). Add it to the file by using below command;

Notice the oratab file doesn t contain the new database name (BDEV). Add it to the file by using below command; Task: Clone BPROD to BDEV SOURCE: BPROD Target: BDEV Part of the DBA task is to clone databases. Please don t get confused between cloning and refresh. They aren t similar. The simple fact is, during cloning,

More information

11i on RAC: Sweating the Details. Practical overview of Technical Details of Implementing RAC for 11i E-Business Suite

11i on RAC: Sweating the Details. Practical overview of Technical Details of Implementing RAC for 11i E-Business Suite 11i on RAC: Sweating the Details Practical overview of Technical Details of Implementing RAC for 11i E-Business Suite Acronyms and Glossary Terms RAC: Real Application Clusters OATM: Oracle Application

More information

Exam 1Z0-061 Oracle Database 12c: SQL Fundamentals

Exam 1Z0-061 Oracle Database 12c: SQL Fundamentals Exam 1Z0-061 Oracle Database 12c: SQL Fundamentals Description The SQL Fundamentals exam is intended to verify that certification candidates have a basic understanding of the SQL language. It covers the

More information

Exam Questions 1Z0-062

Exam Questions 1Z0-062 Exam Questions 1Z0-062 Oracle Database 12c: Installation and Administration https://www.2passeasy.com/dumps/1z0-062/ 1. You are required to migrate your 11.2.0.3 database as a pluggable database (PDB)

More information

Oracle9i: Kiss Your init.ora Goodbye! Dan Norris Celeritas Technologies, LLC IOUG Live! 2002 Paper #520

Oracle9i: Kiss Your init.ora Goodbye! Dan Norris Celeritas Technologies, LLC IOUG Live! 2002 Paper #520 Oracle9i: Kiss Your init.ora Goodbye! Dan Norris norris@celeritas.com Celeritas Technologies, LLC IOUG Live! 2002 Paper #520 Definitions Instance: The background processes and shared memory that comprise

More information

RAC parameter configuration overview

RAC parameter configuration overview RAC parameter configuration overview Miguel Anjo CERN Physics Databases Distributed Databases Operations Workshop November 2008 Objectives Raise the awareness how important t are the DB parameters depend

More information

Actual4Test. Actual4test - actual test exam dumps-pass for IT exams

Actual4Test.   Actual4test - actual test exam dumps-pass for IT exams Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : 1z0-067 Title : Upgrade Oracle9i/10g/11g OCA to Oracle Database 12c OCP Vendor : Oracle Version : DEMO

More information

Reduce Infrastructure costs with Oracle Clusterware

Reduce Infrastructure costs with Oracle Clusterware Reduce Infrastructure costs with Oracle Clusterware How to Reduce License Cost without losing High Availability Presented By: Bill Pritchett, Senior Consultant Discussion Topics Advantages of having a

More information

DumpsKing. Latest exam dumps & reliable dumps VCE & valid certification king

DumpsKing.   Latest exam dumps & reliable dumps VCE & valid certification king DumpsKing http://www.dumpsking.com Latest exam dumps & reliable dumps VCE & valid certification king Exam : 1z1-062 Title : Oracle Database 12c: Installation and Administration Vendor : Oracle Version

More information

Creating an Oracle Database

Creating an Oracle Database 2 Creating an Oracle Database This chapter discusses the process of creating an Oracle database, and contains the following topics: Considerations Before Creating a Database Using the Database Configuration

More information

ACCURATE STUDY GUIDES, HIGH PASSING RATE! Question & Answer. Dump Step. provides update free of charge in one year!

ACCURATE STUDY GUIDES, HIGH PASSING RATE! Question & Answer. Dump Step. provides update free of charge in one year! DUMP STEP Question & Answer ACCURATE STUDY GUIDES, HIGH PASSING RATE! Dump Step provides update free of charge in one year! http://www.dumpstep.com Exam : 1Z1-060 Title : Upgrade to Oracle Database 12c

More information

IS4510 Compiled by: Zafar Iqbal Khan Lecturer, Dept of IS, CCES, Salaman bin Abdul Aziz University

IS4510 Compiled by: Zafar Iqbal Khan Lecturer, Dept of IS, CCES, Salaman bin Abdul Aziz University Database Administration Lab Manual IS4510 Compiled by: Zafar Iqbal Khan Lecturer, Dept of IS, CCES, Salaman bin Abdul Aziz University Lab Session - 1 Objective:- To be aware of various Oracle Database

More information

Oracle Database 11g: Administration Workshop I Release 2

Oracle Database 11g: Administration Workshop I Release 2 Oracle Database 11g: Administration Workshop I Release 2 Duration: 5 Days What you will learn This Oracle Database 11g: Administration Workshop I Release 2 course explores the fundamentals of basic database

More information

Oracle DBA workshop I

Oracle DBA workshop I Complete DBA(Oracle 11G DBA +MySQL DBA+Amazon AWS) Oracle DBA workshop I Exploring the Oracle Database Architecture Oracle Database Architecture Overview Oracle ASM Architecture Overview Process Architecture

More information

Oracle RAC Database 11g Documentation

Oracle RAC Database 11g Documentation Oracle RAC Database 11g Documentation User Name = root Password = dks2010 Username = oracle Password = oracle Enterprise Manager user name = system Password = manager, profile = Normal Final Migration

More information

Data Protector. Software Version: Zero Downtime Backup Integration Guide

Data Protector. Software Version: Zero Downtime Backup Integration Guide Data Protector Software Version: 10.00 Zero Downtime Backup Integration Guide Document Release Date: June 2017 Software Release Date: June 2017 Legal Notices Warranty The only warranties for Hewlett Packard

More information

1z z0-060 Upgrade to Oracle Database 12c

1z z0-060 Upgrade to Oracle Database 12c 1z0-060 Number: 1z0-060 Passing Score: 800 Time Limit: 120 min File Version: 7.1 1z0-060 Upgrade to Oracle Database 12c Exam A QUESTION 1 Your multitenant container (CDB) contains two pluggable databases

More information

OCP Oracle Database 12c: Advanced Administration Exam Guide

OCP Oracle Database 12c: Advanced Administration Exam Guide OCP Oracle Database 12c: Advanced Administration Exam Guide (Exam 1Z0-063) Bob Bryla Copyright by McGraw-Hill Education. This is prepublication content and is subject to change prior to publication. 2

More information

Databases Clone using ACFS. Infrastructure at your Service.

Databases Clone using ACFS. Infrastructure at your Service. Infrastructure at your Service. About me Infrastructure at your Service. David Hueber COO Principal Consultant +41 79 963 43 68 david.hueber[at]dbi-services.com Page 2 Who we are dbi services Experts At

More information

Enterprise Manager: Scalable Oracle Management

Enterprise Manager: Scalable Oracle Management Session id:xxxxx Enterprise Manager: Scalable Oracle John Kennedy System Products, Server Technologies, Oracle Corporation Enterprise Manager 10G Database Oracle World 2003 Agenda Enterprise Manager 10G

More information

HP 3PAR Recovery Manager Software for Oracle

HP 3PAR Recovery Manager Software for Oracle HP 3PAR Recovery Manager 4.6.0 Software for Oracle User Guide Abstract This document provides the information needed to install, configure, and use the HP 3PAR Recovery Manager 4.6.0 Software for Oracle

More information

High Availability for Oracle 8i Using Double-Take

High Availability for Oracle 8i Using Double-Take High Availability for Oracle 8i Using Double-Take High Availability for Oracle 8i Using Double-Take Revision number 2.0.0 published July 2003 NSI and Double-Take are registered trademarks of Network Specialists,

More information

Oracle Database 11g Release 1 and 10g Release 2 Automatic Storage Management Overview and Technical Best Practices

Oracle Database 11g Release 1 and 10g Release 2 Automatic Storage Management Overview and Technical Best Practices Oracle Database 11g Release 1 and 10g Release 2 Automatic Storage Management Overview and Technical Best Practices 7/30/09 1 Table of Contents Introduction... 3 Overview of Oracle Database 10g Release

More information

Oracle 1Z0-497 Exam Questions and Answers (PDF) Oracle 1Z0-497 Exam Questions 1Z0-497 BrainDumps

Oracle 1Z0-497 Exam Questions and Answers (PDF) Oracle 1Z0-497 Exam Questions 1Z0-497 BrainDumps Oracle 1Z0-497 Dumps with Valid 1Z0-497 Exam Questions PDF [2018] The Oracle 1Z0-497 Oracle Database 12c Essentials exam is an ultimate source for professionals to retain their credentials dynamic. And

More information

EVault Software Oracle Plug-In 5.6 for Solaris 6.5 for Windows. Installation & Configuration Guide

EVault Software Oracle Plug-In 5.6 for Solaris 6.5 for Windows. Installation & Configuration Guide EVault Software Oracle Plug-In 5.6 for Solaris 6.5 for Windows Installation & Configuration Guide March 2009 This manual describes the installation and configuration of the EVault Software Oracle Plug-In

More information

CHAPTER. RMAN Setup and Configuration

CHAPTER. RMAN Setup and Configuration CHAPTER 3 RMAN Setup and Configuration 61 62 Part II: Setup Principles and Practices L et s get started with this RMAN thing, shall we? Let s just reach down, pull on the handle, I said, pull on the handle

More information

How To Apply Archive Logs Manually In Standby Database Using Rman

How To Apply Archive Logs Manually In Standby Database Using Rman How To Apply Archive Logs Manually In Standby Database Using Rman Using Rman Active Duplicate to create a Standby from a standby. Posted by RMAN_. Let's create some Archivelogs in Primary Database so that

More information