Using RMAN Backup Files from Standby Database to Recover Primary

Size: px
Start display at page:

Download "Using RMAN Backup Files from Standby Database to Recover Primary"

Transcription

1 Oracle actively promotes the offloading of workload from the primary database to what would otherwise be a completely passive standby database. The suggestions for what to offload include reporting and backup tasks. This paper specifically focuses on taking backups from a physical standby database. The trigger for this work was a discussion in the office about taking backups from a physical standby. The sticking point was that some members of the team were of the belief that there are problems with using backups generated from a physical standby database to recover the primary database. Logic told me that the relationship between a primary database and its physical standby databases would mean that there should be no problems. A physical standby database is, in my mind at least, an image copy of the primary that is being updated with the transactions from the primary database via the redo stream. Anyway, it was time for some testing My Data Guard test system was built using Oracle VM Server and Oracle Enterprise Linux with Database 10g server templates. This made getting a system ready to test was pretty straightforward. The initial tests I conducted were to use an RMAN catalog in order to take backups from both the primary and standby databases. This gave me an insight into how backups from primary and standby databases work. The important points for me were: Providing the catalog is available to both primary and standby, both databases are aware of backupsets and copies regardless of which database they are created on. If you use RMAN to delete backupsets or copies from a node other than the one they are created on an error will be reported, as the files do not exist on the local filesystem. If a backupset is taken from a standby database then that backup set will be known to the primary database through the catalog. This means that the backupset pieces from the standby can be used for restores on the primary providing they are moved to the catalogued location on the primary. After the initial tests I attempted to use backupsets and copies taken from the physical standby database on the primary. This worked without problems and I reported my successes the following morning The challenge then became a little more restrictive, No, not using a recovery catalog. Oh, I m talking about with 9i. And, the database must be in managed recovery mode. So, with the new rules of engagement I set about my task. My logic was that without a recovery catalog I would need to use the CATALOG command in order to make RMAN (via the controlfile) aware of the backupsets or copies. The restriction of 9i meant that I could not use backupsets. So, the plan was: Martin Nash ORAganism 2009 Page 1 of 6

2 1. Use BACKUP AS COPY on the standby database 2. Remove a datafile from the primary 3. Copy the appropriate RMAN copy to the primary host 4. CATALOG the DATAFILECOPY on the primary host via RMAN 5. RESTORE the missing data file 6. RECOVER the newly restored data file 7. Open database And, this is what happened. Starting standby database on node 2... [oracle@dg02 ~]$ sqlplus /nolog SQL*Plus: Release Production on Fri Apr 10 10:19: conn / as sysdba Connected to an idle instance. 10:19:16 SYS@dg10g> startup nomount ORACLE instance started. Total System Global Area bytes bytes bytes Database Buffers bytes Redo Buffers bytes 10:19:25 SYS@dg10g> alter database mount standby database; Database altered. Elapsed: 00:00: :19:45 SYS@dg10g> alter database recover managed standby database disconnect from session; Database altered. Elapsed: 00:00: :20:22 SYS@dg10g> select process, status from v$managed_standby; PROCESS STATUS ARCH CONNECTED ARCH CONNECTED MRP0 WAIT_FOR_LOG Elapsed: 00:00: :20:42 SYS@dg10g> Starting primary database on node 1... [oracle@dg01 ~]$ sqlplus /nolog SQL*Plus: Release Production on Fri Apr 10 10:21: conn / as sysdba Connected to an idle instance. 10:21:30 SYS@dg10g> startup ORACLE instance started. Total System Global Area bytes bytes bytes Martin Nash ORAganism 2009 Page 2 of 6

3 Database Buffers Redo Buffers Database mounted. Database opened. 10:22: bytes bytes Showing contents of RMAN repository on node 1... ~]$ rman target / Recovery Manager: Release Production on Fri Apr 10 10:25: Copyright (c) 1982, 2007, Oracle. All rights reserved. connected to target database: DG10G (DBID= ) list backupset; using target database control file instead of recovery catalog list copy; specification does not match any archive log in the recovery catalog Showing contents of RMAN repository on node 2... [oracle@dg02 ~]$ rman target / Recovery Manager: Release Production on Fri Apr 10 10:25: Copyright (c) 1982, 2007, Oracle. All rights reserved. connected to target database: DG10G (DBID= , not open) list backupset; using target database control file instead of recovery catalog list copy; specification does not match any archive log in the recovery catalog Switching Logfile on node 1 10:27:06 SYS@dg10g> alter system switch logfile; System altered. Elapsed: 00:00: :27:52 SYS@dg10g> Watching it being received on node 2 10:27:23 SYS@dg10g> select process, status from v$managed_standby; PROCESS STATUS ARCH CLOSING ARCH OPENING MRP0 WAIT_FOR_LOG RFS RECEIVING 6 rows selected. Elapsed: 00:00: :27:49 SYS@dg10g> Martin Nash ORAganism 2009 Page 3 of 6

4 Backing up datafile 1 from the standby... backup as copy datafile 1 format '/home/oracle/backup/%u.rman'; Starting backup at 10-APR :32:15 using channel ORA_DISK_1 channel ORA_DISK_1: starting datafile copy input datafile fno=00001 name=+data/dg10g/datafile/system output filename=/home/oracle/backup/data_d-dg10g_i _ts-system_fno-1_1akc44pg.rman tag=tag t recid=25 stamp= channel ORA_DISK_1: datafile copy complete, elapsed time: 00:01:15 Finished backup at 10-APR :33:31 Starting Control File and SPFILE Autobackup at 10-APR :33:31 piece handle=+data/dg10g/autobackup/2009_04_10/s_ comment=none Finished Control File and SPFILE Autobackup at 10-APR :33:38 Confirming that RMAN on node 1 is not away of the copy list copy; List of Archived Log Copies Key Thrd Seq S Low Time Name A 10-APR :21:52 +DATA/dg10g/archivelog/2009_04_10/thread_1_seq_ A 10-APR :27:04 +DATA/dg10g/archivelog/2009_04_10/thread_1_seq_ Crashing ASM instance on node 1 in order to remove datafile 1... ASM is aware that the RDBMS instance is accessing the datafile, so will not let it be removed. Performing a STARTUP FORCE on the ASM instance will shutdown abort the RDBMS instance and allow the datafile to be removed from within ASM. It has been pointed out that simply shutting down the RDBMS instance would have the same effect of allowing the removal of the datafile from ASM. [oracle@dg01 ~]$. oraenv ORACLE_SID = [dg10g]? +ASM [oracle@dg01 ~]$ sqlplus /nolog SQL*Plus: Release Production on Fri Apr 10 10:34: conn / as sysdba Connected. 10:35:04 SYS@+ASM> startup force ASM instance started Total System Global Area bytes bytes bytes ASM Cache bytes ASM diskgroups mounted 10:35:24 SYS@+ASM> exit Disconnected from Oracle Database 10g Enterprise Edition Release bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options Removing datafile 1 on node 1 [oracle@dg01 ~]$ asmcmd -p ASMCMD [+] > ls data/dg10g/datafile SYSAUX SYSTEM Martin Nash ORAganism 2009 Page 4 of 6

5 UNDOTBS USERS ASMCMD [+] > rm data/dg10g/datafile/system ASMCMD [+] > exit ~]$ Attempting to start database on node 1... ~]$ sqlplus /nolog SQL*Plus: Release Production on Fri Apr 10 10:40: conn / as sysdba Connected to an idle instance. 10:40:23 SYS@dg10g> startup ORACLE instance started. Total System Global Area bytes bytes bytes Database Buffers bytes Redo Buffers bytes Database mounted. ORA-01157: cannot identify/lock data file 1 - see DBWR trace file ORA-01110: data file 1: '+DATA/dg10g/datafile/system ' 10:40:40 SYS@dg10g> Copying data file copy backed up on node 2 (standby) to node 1 [oracle@dg02 ~]$ scp backup/data_d-dg10g_i _ts-system_fno-1_1akc44pg.rman dg01:./backup/ oracle@dg01's password: data_d-dg10g_i _ts-system_fno-1_1akc44pg.rman 100% 610MB 38.1MB/s 00:16 [oracle@dg02 ~]$ Catalog the copied data file on node 1 (primary)... catalog datafilecopy '/home/oracle/backup/data_d-dg10g_i _ts-system_fno- 1_1akc44pg.rman'; cataloged datafile copy datafile copy filename=/home/oracle/backup/data_d-dg10g_i _ts-system_fno- 1_1akc44pg.rman recid=36 stamp= Restore data file 1 on node 1 (primary)... restore datafile 1; Starting restore at 10-APR :45:20 allocated channel: ORA_DISK_1 channel ORA_DISK_1: sid=151 devtype=disk channel ORA_DISK_1: restoring datafile input datafile copy recid=36 stamp= filename=/home/oracle/backup/data_d-dg10g_i _TS-SYSTEM_FNO-1_1akc44pg.rman destination for restore of datafile 00001: +DATA/dg10g/datafile/system channel ORA_DISK_1: copied datafile copy of datafile output filename=+data/dg10g/datafile/system recid=37 stamp= Finished restore at 10-APR :46:46 Recover data file 1 on node 1 (primary)... Martin Nash ORAganism 2009 Page 5 of 6

6 recover datafile 1; Starting recover at 10-APR :46:53 using channel ORA_DISK_1 starting media recovery media recovery complete, elapsed time: 00:00:03 Finished recover at 10-APR :46:57 Open database on node 1 (primary)... alter database open; database opened Confirm database role 10:47:39 SYS@dg10g> select database_role from v$database; DATABASE_ROLE PRIMARY Elapsed: 00:00: :47:59 SYS@dg10g> Confirm that node 2 is still in managed recovery mode... 10:48:26 SYS@dg10g> select process, status from v$managed_standby; PROCESS STATUS ARCH CLOSING ARCH CLOSING MRP0 WAIT_FOR_LOG Elapsed: 00:00: :48:28 SYS@dg10g> select database_role from v$database; DATABASE_ROLE PHYSICAL STANDBY Elapsed: 00:00: :48:41 SYS@dg10g>... I think that proves that you do not need to use a RMAN catalog, you can use Oracle 9i commands only and you do not have to stop managed recover in order to use the backups taken from a standby database in order to recover a primary. OK, there are some restrictions. Well, there is one restriction that seems pretty important: the fact that you cannot CATALOG backupsets in 9i. But, that has gone in 10g. So, that s another reason to upgrade. Obviously there are many factors to consider before moving all backups from the primary site to a physical standby and I would be very interested to hear from people who have encountered problems using a physical standby to perform their backups. Martin Nash ORAganism 2009 Page 6 of 6

If you have not multiplexed your online redo logs, then you are only left with incomplete recovery. Your steps are as follows:

If you have not multiplexed your online redo logs, then you are only left with incomplete recovery. Your steps are as follows: How to Recover lost online redo logs? Author A.Kishore If you lose the current online redo log, then you will not be able to recover the information in that online redo log. This is one reason why redo

More information

Database Disaster Recovery using only RMAN Backups

Database Disaster Recovery using only RMAN Backups 12 th Apr, 2010 PURPOSE This paper demonstrates how an Oracle Database can be recovered or reconstructed by using only the RMAN Backup files (from Disks) in case of a complete server crash. CASE STUDY

More information

Oracle 12c Recovering a lost /corrupted table from RMAN Backup after user error or application issue

Oracle 12c Recovering a lost /corrupted table from RMAN Backup after user error or application issue Oracle 12c Recovering a lost /corrupted table from RMAN Backup after user error or application issue Oracle 12c has automated table level recovery using RMAN. If you lose a table after user error or get

More information

Recreate Physical Standby Database after Recovery of Primary Database

Recreate Physical Standby Database after Recovery of Primary Database Recreate Physical Standby Database after Recovery of Primary Database In Oracle 11g it is possible to create a Physical Standby Database from the Primary Database using RMAN. Furthermore, the same procedure

More information

Oracle 11gR2 : Recover dropped tablespace using RMAN tablespace point in time recovery

Oracle 11gR2 : Recover dropped tablespace using RMAN tablespace point in time recovery Oracle 11gR2 : Recover dropped tablespace using RMAN tablespace point in time recovery Mohamed Azar Oracle DBA http://mohamedazar.wordpress.com 1 Mohamed Azar http://mohamedazar.wordpress.com This is new

More information

Using RMAN to restore a database to another server in an ASM environment

Using RMAN to restore a database to another server in an ASM environment Using RMAN to restore a database to another server in an ASM environment It is possible to restore an Oracle 11g database to another server easily in an ASM environment by following the steps below. 1.

More information

Oracle 10g Feature: RMAN Incrementally Updated Backups

Oracle 10g Feature: RMAN Incrementally Updated Backups Oracle 10g Feature: RMAN Incrementally Updated Backups Author: Dave Anderson, SkillBuilders Date: September 13, 2004 Introduction This article explains one of the features presented by Dave Anderson at

More information

Backup/Restore Oracle 8i/9i/10g

Backup/Restore Oracle 8i/9i/10g This chapter will describe in details how Software backup your Oracle Database Server and how you can restore an Oracle database using the backup files. Table of Content 1. Requirements 2. Overview 3.

More information

HOW TO. RMAN Restore for Standby 10gR2

HOW TO. RMAN Restore for Standby 10gR2 Author: Martin Decker Date: 8.10.2008 Subject: RMAN Restore for Standby 10gR2 HOW TO RMAN Restore for Standby 10gR2 1 Preparations The existing database MDDB1 should be duplicated as Standby Database MDSTB1

More information

RMAN BACKUP & RECOVERY. Recovery Manager. Veeratteshwaran Sridhar

RMAN BACKUP & RECOVERY. Recovery Manager. Veeratteshwaran Sridhar RMAN Recovery Manager BACKUP & RECOVERY Veeratteshwaran Sridhar Why Backup & Recovery? The purpose of a backup and recovery strategy is to protect the database against data loss and reconstruct the database

More information

12. User-managed and RMAN-based backups.

12. User-managed and RMAN-based backups. 12. User-managed and RMAN-based backups. Abstract: A physical backup is a copy of the physical database files, and it can be performed in two ways. The first is through the Recovery Manager (RMAN) tool

More information

Use RMAN to relocate a 10TB RAC database with minimum downtime. Tao Zuo tao_zuo@npd.com NPD Inc. 9/2011

Use RMAN to relocate a 10TB RAC database with minimum downtime. Tao Zuo tao_zuo@npd.com NPD Inc. 9/2011 Use RMAN to relocate a 10TB RAC database with minimum downtime Tao Zuo tao_zuo@npd.com NPD Inc. 9/2011 Contents Methods of relocate a database with minimum down time RMAN oracle suggested backup strategy

More information

DOCUMENTATION ORACLE BACKUP & RESTORE OPERATIONS

DOCUMENTATION ORACLE BACKUP & RESTORE OPERATIONS DOCUMENTATION Copyright Notice The use and copying of this product is subject to a license agreement. Any other use is prohibited. No part of this publication may be reproduced, transmitted, transcribed,

More information

! " # #$ " " %" & "'( " "' ( ) " * ""! ). " / ( * ( "# 0! " ). '

!  # #$   % & '(  ' ( )  * ! ).  / ( * ( # 0!  ). ' Page 1 of 5! " # $%&' ( )*! " # #$ " " %" & "'( " "' ( ) " * ""! "+ """( +!, - ALTER DATABASE BACKUP CONTROLFILE TO '/u00/app/oracle/admin/t816a/backup/ctrl.bck'; ). " / ( * ( "# 0! " ). ' RMAN-06005:

More information

Oracle Database 10g: Backup and Recovery

Oracle Database 10g: Backup and Recovery Oracle Database 10g: Backup and Recovery Volume I Student Guide D22057GC10 Production 1.0 June 2006 D46524 1 Authors Donna Keesling Maria Billings Technical Contributors and Reviewers Christopher Andrews

More information

Best Practices White Paper Using Oracle Database 10g Automatic Storage Management with FUJITSU Storage

Best Practices White Paper Using Oracle Database 10g Automatic Storage Management with FUJITSU Storage Best Practices White Paper Using Oracle Database 10g Automatic Storage Management with FUJITSU Storage Sep 6, 2005 Fujitsu Limited Contents 1. Introduction... 1 2. Fujitsu s ETERNUS Storage Systems...

More information

Strategies for Oracle Database Backup and Recovery: Case Studies. Mingguang Xu

Strategies for Oracle Database Backup and Recovery: Case Studies. Mingguang Xu Strategies for Oracle Database Backup and Recovery: Case Studies Mingguang Xu Office of Institutional Research University of Georgia www.oir.uga.edu/oirpres.html Oracle Files Oracle requires the following

More information

Database Recovery For Newbies

Database Recovery For Newbies Database Recovery For Newbies Paper #521 Bonnie Bizzaro, Susan McClain Objectives Provide basic understanding of recovery processes and terms Define different types of recovery Discuss common recovery

More information

Clonación de una Base de Datos Oracle 11gR2 Activa usando RMAN. CLONACIÓN DE UNA BASE DE DATOS ORACLE 11gR2 ACTIVA USANDO RMAN

Clonación de una Base de Datos Oracle 11gR2 Activa usando RMAN. CLONACIÓN DE UNA BASE DE DATOS ORACLE 11gR2 ACTIVA USANDO RMAN CLONACIÓN DE UNA BASE DE DATOS ORACLE 11gR2 ACTIVA USANDO RMAN Autor : Luis Alberto Flores Zapata Creado : 10-Agosto-2015 1 Contenido CLONACIÓN DE UNA BASE DE DATOS ORACLE 11gR2 ACTIVA USANDO RMAN... 3

More information

Oracle Backup, Recovery, and Performance Tuning using EMC Avamar and Oracle RMAN

Oracle Backup, Recovery, and Performance Tuning using EMC Avamar and Oracle RMAN Oracle Backup, Recovery, and Performance Tuning using EMC Avamar and Oracle RMAN Best Practices Planning Abstract This white paper provides an in-depth review of the capabilities of the EMC Avamar Oracle

More information

Oracle Database Cross Platform Migration Lucy Feng, DBAK

Oracle Database Cross Platform Migration Lucy Feng, DBAK Delivering Oracle Success Oracle Database Cross Platform Migration Lucy Feng, DBAK RMOUG QEW November 19, 2010 Business Requirements Migrate all Oracle databases to IBM zseries based Linux The database

More information

BrightStor ARCserve Backup

BrightStor ARCserve Backup BrightStor ARCserve Backup Support for Oracle Backup and Restore on Windows 64-Bit Platform - 1 - TABLE OF CONTENTS 1. Summary... 3 2. Backup and Restore Process... 3 3. RMAN Command and Script Template...

More information

Restore and Recovery Tasks. Copyright 2009, Oracle. All rights reserved.

Restore and Recovery Tasks. Copyright 2009, Oracle. All rights reserved. Restore and Recovery Tasks Objectives After completing this lesson, you should be able to: Describe the causes of file loss and determine the appropriate action Describe major recovery operations Back

More information

Oracle Data Guard for High Availability and Disaster Recovery

Oracle Data Guard for High Availability and Disaster Recovery Oracle Data Guard for High Availability and Disaster Recovery John Zhong Senior Technical Specialist Global Database Management Group Citigroup and Vice President of American DBAOnline John_j_zhong@yahoo.com

More information

Recover Oracle Database upon losing all Control Files

Recover Oracle Database upon losing all Control Files Recover Oracle Database upon losing all Control Files R.Wang Oct 19, 07 (Firstly, published at OraclePoint.com ) Preface: This is experimental case study about recovering oracle database upon losing all

More information

11. Oracle Recovery Manager Overview and Configuration.

11. Oracle Recovery Manager Overview and Configuration. 11. Oracle Recovery Manager Overview and Configuration. Abstract: This lesson provides an overview of RMAN, including the capabilities and components of the RMAN tool. The RMAN utility attempts to move

More information

Oracle Backup and Recover 101. Osborne Press ISBN 0-07-219461-8

Oracle Backup and Recover 101. Osborne Press ISBN 0-07-219461-8 Oracle Backup and Recover 101 Osborne Press ISBN 0-07-219461-8 First Printing Personal Note from the Authors Thanks for your purchase of our book Oracle Backup & Recovery 101. In our attempt to provide

More information

TECHNICAL REPORT. Nimble Storage Oracle Backup and Recovery Guide

TECHNICAL REPORT. Nimble Storage Oracle Backup and Recovery Guide TECHNICAL REPORT Nimble Storage Oracle Backup and Recovery Guide N I M B L E T E C H N I C A L R E P O R T : N I M B L E S T O R A G E F O R O R A C L E B A C K U P A N D R E C O V E R Y 1 Document Revision

More information

RMAN What is Rman Why use Rman Understanding The Rman Architecture Taking Backup in Non archive Backup Mode Taking Backup in archive Mode

RMAN What is Rman Why use Rman Understanding The Rman Architecture Taking Backup in Non archive Backup Mode Taking Backup in archive Mode RMAN - What is Rman - Why use Rman - Understanding The Rman Architecture - Taking Backup in Non archive Backup Mode - Taking Backup in archive Mode - Enhancement in 10g For Rman - 9i Enhancement For Rman

More information

Using Recovery Manager with Oracle Data Guard in Oracle Database 10g. An Oracle White Paper April 2009

Using Recovery Manager with Oracle Data Guard in Oracle Database 10g. An Oracle White Paper April 2009 Using Recovery Manager with Oracle Data Guard in Oracle Database 10g An Oracle White Paper April 2009 Using Recovery Manager with Oracle Data Guard in Oracle Database 10g Executive summary... 3 Introduction...

More information

This appendix describes the following procedures: Cisco ANA Registry Backup and Restore Oracle Database Backup and Restore

This appendix describes the following procedures: Cisco ANA Registry Backup and Restore Oracle Database Backup and Restore APPENDIXA This appendix describes the following procedures: Cisco ANA Registry Oracle Database Cisco ANA Registry This section describes the Cisco ANA Registry backup and restore procedure. Overview Provides

More information

Restoring To A Different Location With EBU And RMAN An AppsDBA Consulting White Paper

Restoring To A Different Location With EBU And RMAN An AppsDBA Consulting White Paper An White Paper Contents 1. OVERVIEW... 1 1.1 DEFINITIONS... 1 2. ENTERPRISE BACKUP UTILITY... 2 2.1 ARCHITECTURE... 2 2.1.1 Target Database... 2 2.1.2 Catalog... 2 2.1.3 Media Management Layer (MML)...

More information

Cross Platform Transportable Tablespaces Migration in Oracle 11g

Cross Platform Transportable Tablespaces Migration in Oracle 11g Cross Platform Transportable Tablespaces Migration in Oracle 11g Prepared by ViSolve Migration Team June 2012 Contact ViSolve, Inc. 4010, Moorpark Avenue, #205 San Jose, California 95117 (602) 842 2738

More information

Backup Types. Backup and Recovery. Categories of Failures. Issues. Logical. Cold. Hot. Physical With. Statement failure

Backup Types. Backup and Recovery. Categories of Failures. Issues. Logical. Cold. Hot. Physical With. Statement failure Backup Types Logical Backup and Recovery Cold Hot Physical With Without Issues Categories of Failures Protectthe database from numerous types of failures Increase Mean-Time-Between-Failures (MTBF) Decrease

More information

Oracle Database 12c Recovery Manager New Features

Oracle Database 12c Recovery Manager New Features Oracle Database 12c Recovery Manager New Features Presented by: Andy Colvin February 13, 2013 *DISCLAIMER* Oracle 12c has not been released yet Some features may not be available I believe Oracle has mentioned

More information

Oracle 11g DBA Training Course Content

Oracle 11g DBA Training Course Content Oracle 11g DBA Training Course Content ORACLE 10g/11g DATABASE ADMINISTRATION CHAPTER1 Important Linux commands Installing of Redhat Linux as per oracle database requirement Installing of oracle database

More information

Oracle 11g Database Administration

Oracle 11g Database Administration Oracle 11g Database Administration Part 1: Oracle 11g Administration Workshop I A. Exploring the Oracle Database Architecture 1. Oracle Database Architecture Overview 2. Interacting with an Oracle Database

More information

PRM For Oracle Database 3.1 GUI:

PRM For Oracle Database 3.1 GUI: Case Study on PRM/DUL Recovery For Oracle Database PRM is designed for Enterprise Database Recovery, which includes all Oracle DUL data recovery functionalities, and also easy-to-use GUI. PRM For Oracle

More information

Oracle Database 10g: Backup and Recovery 1-2

Oracle Database 10g: Backup and Recovery 1-2 Oracle Database 10g: Backup and Recovery 1-2 Oracle Database 10g: Backup and Recovery 1-3 What Is Backup and Recovery? The phrase backup and recovery refers to the strategies and techniques that are employed

More information

Maximum Availability Architecture. Oracle Best Practices For High Availability

Maximum Availability Architecture. Oracle Best Practices For High Availability MAA / Data Guard 10g Setup Guide Creating a Single Instance Physical Standby for a RAC Primary Oracle Maximum Availability Architecture White Paper April 2006 Maximum Availability Architecture Oracle Best

More information

Installation Companion Oracle Data Guard on Amazon EC2 Configuration Guide

Installation Companion Oracle Data Guard on Amazon EC2 Configuration Guide Installation Companion Oracle Data Guard on Amazon EC2 Configuration Guide Solutions Network Narender Akula Navin Mudaliar Shakir Aleem Ahmed Sasin Gnanamoorthy September 2010 Table of contents About this

More information

Disclaimer. Maximum Availability Architecture

Disclaimer. Maximum Availability Architecture Disaster Recovery Guide: Oracle SOA Suite 10g on Oracle WebLogic Server Oracle Maximum Availability Architecture White Paper June 2009 Maximum Availability Architecture Oracle Best Practices For High Availability

More information

Oracle Backup and Recovery Best Practices Dell Compellent Storage Center. Dell Compellent Technical Best Practices

Oracle Backup and Recovery Best Practices Dell Compellent Storage Center. Dell Compellent Technical Best Practices Oracle Backup and Recovery Best Practices Dell Compellent Storage Center Dell Compellent Technical Best Practices ii Document Revision Table 1. Revision History Date Revision Description 6/15/2011 A Initial

More information

Oracle server: An Oracle server includes an Oracle Instance and an Oracle database.

Oracle server: An Oracle server includes an Oracle Instance and an Oracle database. Objectives These notes introduce the Oracle server architecture. The architecture includes physical components, memory components, processes, and logical structures. Primary Architecture Components The

More information

High Performance Oracle RAC Clusters A study of SSD SAN storage A Datapipe White Paper

High Performance Oracle RAC Clusters A study of SSD SAN storage A Datapipe White Paper High Performance Oracle RAC Clusters A study of SSD SAN storage A Datapipe White Paper Contents Introduction... 3 Disclaimer... 3 Problem Statement... 3 Storage Definitions... 3 Testing Method... 3 Test

More information

Agenda. Overview Configuring the database for basic Backup and Recovery Backing up your database Restore and Recovery Operations Managing your backups

Agenda. Overview Configuring the database for basic Backup and Recovery Backing up your database Restore and Recovery Operations Managing your backups Agenda Overview Configuring the database for basic Backup and Recovery Backing up your database Restore and Recovery Operations Managing your backups Overview Backup and Recovery generally focuses on the

More information

Oracle Database 12c: Admin, Install and Upgrade Accelerated

Oracle Database 12c: Admin, Install and Upgrade Accelerated Oracle University Contact Us: + 38516306373 Oracle Database 12c: Admin, Install and Upgrade Accelerated Duration: 5 Days What you will learn This Oracle Database 12c: Admin, Install and Upgrade Accelerated

More information

MAX_RMAN_08137_IGNORE=5 DISK_RETENTION_POLICY='RECOVERY WINDOW OF 7 DAYS'

MAX_RMAN_08137_IGNORE=5 DISK_RETENTION_POLICY='RECOVERY WINDOW OF 7 DAYS' !/bin/sh Example shell script to perform a nightly full backup of the database and scan for errors Copyright (c) 2008, 2014 Caleb.com All Rights Reserved This script is provided as an EXAMPLE ONLY and

More information

Performing Database and File System Backups and Restores Using Oracle Secure Backup

Performing Database and File System Backups and Restores Using Oracle Secure Backup Performing Database and File System Backups and Restores Using Oracle Secure Backup Purpose This lesson introduces you to Oracle Secure Backup which enables you to perform database and file system backups

More information

Using Recovery Manager with Oracle Data Guard in Oracle9i. An Oracle White Paper January 2007

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

More information

Oracle. Brief Course Content This course can be done in modular form as per the detail below. ORA-1 Oracle Database 10g: SQL 4 Weeks 4000/-

Oracle. Brief Course Content This course can be done in modular form as per the detail below. ORA-1 Oracle Database 10g: SQL 4 Weeks 4000/- Oracle Objective: Oracle has many advantages and features that makes it popular and thereby makes it as the world's largest enterprise software company. Oracle is used for almost all large application

More information

ASM and for 3rd Party Snapshot Solutions - for Offhost. Duane Smith Nitin Vengurlekar RACPACK

ASM and for 3rd Party Snapshot Solutions - for Offhost. Duane Smith Nitin Vengurlekar RACPACK ASM and for 3rd Party Snapshot Solutions - for Offhost backup Duane Smith Nitin Vengurlekar RACPACK POINT-IN-TIME COPY TECHNOLOGIES POINT-IN-TIME COPY TECHNOLOGIES Generic guidelines & best practices for

More information

ORACLE CORE DBA ONLINE TRAINING

ORACLE CORE DBA ONLINE TRAINING ORACLE CORE DBA ONLINE TRAINING ORACLE CORE DBA THIS ORACLE DBA TRAINING COURSE IS DESIGNED TO PROVIDE ORACLE PROFESSIONALS WITH AN IN-DEPTH UNDERSTANDING OF THE DBA FEATURES OF ORACLE, SPECIFIC ORACLE

More information

Oracle Storage Options

Oracle Storage Options 1/27 Oracle Storage Options RAW, ASM, CFS, for Real Application Cluster Unterföhring, 11.2005 M. Kühn 1 2/27 Be spoilt for choice? RAC Review Introduction Storage Options RAW In short ASM Automatic Storage

More information

Configuring Backup Settings. Copyright 2009, Oracle. All rights reserved.

Configuring Backup Settings. Copyright 2009, Oracle. All rights reserved. Configuring Backup Settings Objectives After completing this lesson, you should be able to: Use Enterprise Manager to configure backup settings Enable control file autobackup Configure backup destinations

More information

SAP with Oracle Real Application Clusters 11g Release 2 and Oracle Automatic Storage Management 11g Release 2

SAP with Oracle Real Application Clusters 11g Release 2 and Oracle Automatic Storage Management 11g Release 2 An Oracle White Paper October 2012 SAP with Oracle Real Application Clusters 11g Release 2 and Oracle Automatic Storage Management 11g Release 2 Introduction... 3 Related SAP Notes... 3 Storage based Mirroring

More information

Oracle Cloud Storage and File system

Oracle Cloud Storage and File system 2012 Tieto Corporation Oracle Cloud Storage and File system Andrejs Karpovs Oracle Apps DBA Tieto, andrejs.karpovs@tieto.com Few notes about me I Am a DBA Work in Tieto Have 4 years exprerience working

More information

11. Configuring the Database Archiving Mode.

11. Configuring the Database Archiving Mode. 11. Configuring the Database Archiving Mode. Abstract: Configuring an Oracle database for backup and recovery can be complex. At a minimum, you must understand the archive process, the initialization parameters

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Application Notes Oracle Backup Recovery Setup on LeftHand Networks IP SAN Legal Notices Warranty The only warranties for HP products and services are set forth

More information

Best Practices White Paper Using Oracle Database 11g R2 Automatic Storage Management with FUJITSU Storage (Windows version)

Best Practices White Paper Using Oracle Database 11g R2 Automatic Storage Management with FUJITSU Storage (Windows version) ED-WP-0037-01WE Best Practices White Paper Using Oracle Database 11g R2 Automatic Storage Management with FUJITSU Storage (Windows version) Apr 25, 2013 Fujitsu Limited Copyright 2013 FUJITSU LIMITED Contents

More information

CA ARCserve Backup for Windows

CA ARCserve Backup for Windows CA ARCserve Backup for Windows Agent for Oracle Guide r16 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Delivery Method: Instructor-led, group-paced, classroom-delivery learning model with structured, hands-on activities.

Delivery Method: Instructor-led, group-paced, classroom-delivery learning model with structured, hands-on activities. Course Code: Title: Format: Duration: SSD024 Oracle 11g DBA I Instructor led 5 days Course Description Through hands-on experience administering an Oracle 11g database, you will gain an understanding of

More information

<Insert Picture Here> RMAN Configuration and Performance Tuning Best Practices

<Insert Picture Here> RMAN Configuration and Performance Tuning Best Practices 1 RMAN Configuration and Performance Tuning Best Practices Timothy Chien Principal Product Manager Oracle Database High Availability Timothy.Chien@oracle.com Agenda Recovery Manager

More information

Getting all the pieces: Reliable Backup/Recovery

Getting all the pieces: Reliable Backup/Recovery Getting all the pieces: Reliable Backup/Recovery Part 1: Recovery Manager Part 2: Custom Backup Mark W. Farnham Andy Rivenes Neil Jensen Overview Whether you use Oracle s Recovery Manager product, a third

More information

Oracle Database 10g: Administration Workshop II Release 2

Oracle Database 10g: Administration Workshop II Release 2 ORACLE UNIVERSITY CONTACT US: 00 9714 390 9000 Oracle Database 10g: Administration Workshop II Release 2 Duration: 5 Days What you will learn This course advances your success as an Oracle professional

More information

Using Physical Replication and Oracle Database Standard Edition for Disaster Recovery. A Dbvisit White Paper

Using Physical Replication and Oracle Database Standard Edition for Disaster Recovery. A Dbvisit White Paper Using Physical Replication and Oracle Database Standard Edition for Disaster Recovery A Dbvisit White Paper Copyright 2015 Dbvisit Software Limited. All Rights Reserved V2, September, 2015 Contents Executive

More information

CA ARCserve Backup for Linux

CA ARCserve Backup for Linux CA ARCserve Backup for Linux Agent for Oracle Guide r16 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Oracle Data Recovery Advisor

Oracle Data Recovery Advisor Infrastructure at your Service. Oracle Data Recovery Advisor Infrastructure at your Service. About me David Hueber COO Principal Consultant Mobile +41 79 963 43 68 david.hueber@dbi-services.com www.dbi-services.com

More information

RMAN Recipes for Oracle Database 11g : A Problem-Solution Approach by Darl Kuhn, Sam Alapati and Arup Nanda Apress. (c) 2007. Copying Prohibited.

RMAN Recipes for Oracle Database 11g : A Problem-Solution Approach by Darl Kuhn, Sam Alapati and Arup Nanda Apress. (c) 2007. Copying Prohibited. RMAN Recipes for Oracle Database 11g : A - Approach by Darl Kuhn, Sam Alapati and Arup Nanda Apress. (c) 2007. Copying Prohibited. Reprinted for MICHAEL DOAN, SAIC MICHAEL.DOAN@saic.com Reprinted with

More information

Zen Internet. Online Data Backup. Zen Vault Professional Plug-ins. Issue: 2.0.08

Zen Internet. Online Data Backup. Zen Vault Professional Plug-ins. Issue: 2.0.08 Zen Internet Online Data Backup Zen Vault Professional Plug-ins Issue: 2.0.08 Contents 1 Plug-in Installer... 3 1.1 Installation and Configuration... 3 2 Plug-ins... 5 2.1 Email Notification... 5 2.1.1

More information

EMC Replication Manager Integration with Oracle Database Server

EMC Replication Manager Integration with Oracle Database Server White Paper EMC Replication Manager Integration with Oracle Database Server A Detailed Review Abstract This white paper offers an in-depth look at how EMC Replication Manager integrates with Oracle Database

More information

Ultimate Guide to Oracle Storage

Ultimate Guide to Oracle Storage Ultimate Guide to Oracle Storage Presented by George Trujillo George.Trujillo@trubix.com George Trujillo Twenty two years IT experience with 19 years Oracle experience. Advanced database solutions such

More information

DisasterRecoverywith. DisasterRecoverywith Oracle Data Guard10gR2

DisasterRecoverywith. DisasterRecoverywith Oracle Data Guard10gR2 DisasterRecoverywith Martin Decker DisasterRecoverywith Oracle Data Guard10gR2 Martin Decker, January 2009 Overview Definitions High Availability, DisasterRecovery, Maximum Availability Architecture(MAA)

More information

VMAX 3 AND ORACLE. Yaron Dar & Udgith Mankad VMAX Partner Engineering ORACLE BEST PRACTICES FOR REPLICATIONS, BACKUP/RECOVERY, AND PROTECTPOINT

VMAX 3 AND ORACLE. Yaron Dar & Udgith Mankad VMAX Partner Engineering ORACLE BEST PRACTICES FOR REPLICATIONS, BACKUP/RECOVERY, AND PROTECTPOINT 1 Yaron Dar & Udgith Mankad VMAX Partner Engineering VMAX 3 AND ORACLE ORACLE BEST PRACTICES FOR REPLICATIONS, BACKUP/RECOVERY, AND PROTECTPOINT 2 ROADMAP INFORMATION DISCLAIMER EMC makes no representation

More information

UNIVERSITY AUTHORISED EDUCATION PARTNER (WDP)

UNIVERSITY AUTHORISED EDUCATION PARTNER (WDP) Audience Data Warehouse Administrator Database Administrators Database Designers Support Engineer Technical Administrator Related Training Required Prerequisites Working knowledge of SQL and use of PL/SQL

More information

Oracle Data Guard Fast Start Failover understood!

Oracle Data Guard Fast Start Failover understood! Oracle Data Guard Fast Start Failover understood! Dr. Martin Wunderli http://www.trivadis.com Principal Consultant Partner Basel Baden Bern Lausanne Zurich Düsseldorf Frankfurt/M. Freiburg i. Br. Hamburg

More information

Rob Zoeteweij Zoeteweij Consulting

Rob Zoeteweij Zoeteweij Consulting Rob Zoeteweij Zoeteweij Consulting Rob Zoeteweij Working with Oracle technology since 1985 (Oracle 3) Many Oracle DBA, Oracle Development projects Last 6 Years Oracle Expert Services RAC/ASM OEM Grid Control

More information

The safer, easier way to help you pass any IT exams. Exam : 1Z0-067. Upgrade Oracle9i/10g/11g OCA to Oracle Database 12c OCP.

The safer, easier way to help you pass any IT exams. Exam : 1Z0-067. Upgrade Oracle9i/10g/11g OCA to Oracle Database 12c OCP. http://www.51- pass.com Exam : 1Z0-067 Title : Upgrade Oracle9i/10g/11g OCA to Oracle Database 12c OCP Version : DEMO 1 / 7 1.Which two statements are true about scheduling operations in a pluggable database

More information

High Availability Databases based on Oracle 10g RAC on Linux

High Availability Databases based on Oracle 10g RAC on Linux High Availability Databases based on Oracle 10g RAC on Linux WLCG Tier2 Tutorials, CERN, June 2006 Luca Canali, CERN IT Outline Goals Architecture of an HA DB Service Deployment at the CERN Physics Database

More information

Oracle Data Guard. Caleb Small Caleb@Caleb.com. Puget Sound Oracle Users Group Education Is Our Passion

Oracle Data Guard. Caleb Small Caleb@Caleb.com. Puget Sound Oracle Users Group Education Is Our Passion Oracle Data Guard Caleb Small Caleb@Caleb.com Outline Overview Planning a DataGuard Installation Architecture Setting up DataGuard Managing & Monitoring Crash & Burn Demo Overview Data Guard Concepts Causes

More information

Exadata for Oracle DBAs. Longtime Oracle DBA

Exadata for Oracle DBAs. Longtime Oracle DBA Exadata for Oracle DBAs Longtime Oracle DBA Why this Session? I m an Oracle DBA Familiar with RAC, 11gR2 and ASM About to become a Database Machine Administrator (DMA) How much do I have to learn? How

More information

WHITE PAPER. Oracle RMAN Design Best Practices with Data Domain. Storage. Deduplication

WHITE PAPER. Oracle RMAN Design Best Practices with Data Domain. Storage. Deduplication WHITE PAPER Deduplication Storage Oracle RMAN Design Best Practices with Data Domain w w w. d a t a d o m a i n. c o m - 2 0 0 7 DATA DOMAIN I Contents Contents Integration...9 Introduction......................................

More information

COURCE TITLE DURATION. Oracle Database 11g: Administration Workshop I

COURCE TITLE DURATION. Oracle Database 11g: Administration Workshop I COURCE TITLE DURATION DBA 11g Oracle Database 11g: Administration Workshop I 40 H. What you will learn: This course is designed to give students a firm foundation in basic administration of Oracle Database

More information

Oracle Recovery Manager 10g. An Oracle White Paper November 2003

Oracle Recovery Manager 10g. An Oracle White Paper November 2003 Oracle Recovery Manager 10g An Oracle White Paper November 2003 Oracle Recovery Manager 10g EXECUTIVE OVERVIEW A backup of the database may be the only means you have to protect the Oracle database from

More information

Data virtualization: playing with Oracle 12c on Docker containers

Data virtualization: playing with Oracle 12c on Docker containers Data virtualization: playing with Oracle 12c on Docker containers This year will be about data virtualization. We can t continue to multiply our database storage for each preprod, test, dev, etc. environments

More information

Backing Up Oracle Databases with Handy Backup

Backing Up Oracle Databases with Handy Backup Backing Up Oracle Databases with Handy Backup April 2013 Contents Introduction... 3 Main features of Handy Backup Oracle plug-in... 3 Assignment... 3 Advantages... 3 Backing up of remote Oracle databases...

More information

Oracle Database: SQL and PL/SQL Fundamentals NEW

Oracle Database: SQL and PL/SQL Fundamentals NEW Oracle University Contact Us: 001-855-844-3881 & 001-800-514-06-97 Oracle Database: SQL and PL/SQL Fundamentals NEW Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals

More information

LOGGING OR NOLOGGING THAT IS THE QUESTION

LOGGING OR NOLOGGING THAT IS THE QUESTION LOGGING OR NOLOGGING THAT IS THE QUESTION Page 1 of 35 Table of Contents: Table of Contents:...2 Introduction...3 What s a Redo...4 Redo Generation and Recoverability...7 Why I have excessive Redo Generation

More information

Oracle Database 11g: Administration And Backup & Recover

Oracle Database 11g: Administration And Backup & Recover Oracle Database 11g: Administration And Backup & Recover ส าหร บคอร ส Oracle 11g Database Administration น เป นคอร สส าหร บผ ท ก าล งเร มต นการเป น ORACLE DBA หร อผ ท ต องการจะสอบ Oracle Certified Associate

More information

Oracle VM Server Recovery Guide. Version 8.2

Oracle VM Server Recovery Guide. Version 8.2 Oracle VM Server Recovery Guide Version 8.2 Oracle VM Server for x86 Recovery Guide The purpose of this document is to provide the steps necessary to perform system recovery of an Oracle VM Server for

More information

ORACLE DATABASE 11G: COMPLETE

ORACLE DATABASE 11G: COMPLETE ORACLE DATABASE 11G: COMPLETE 1. ORACLE DATABASE 11G: SQL FUNDAMENTALS I - SELF-STUDY COURSE a) Using SQL to Query Your Database Using SQL in Oracle Database 11g Retrieving, Restricting and Sorting Data

More information

Oracle Database B14191-02

Oracle Database B14191-02 Oracle Database Backup and Recovery Advanced User s Guide 10g Release 2 (10.2) B14191-02 November 2005 A guide to advanced backup and recovery of Oracle databases and advanced uses of Recovery Manager

More information

Oracle 11g DBA Online Course - Smart Mind Online Training, Hyderabad. Oracle 11g DBA Online Training Course Content

Oracle 11g DBA Online Course - Smart Mind Online Training, Hyderabad. Oracle 11g DBA Online Training Course Content Oracle 11g DBA Online Training Course Content Faculty: Real time and certified INTRODUCTION TO ORACLE DBA What is DBA? Why a Company needs a DBA? Roles & Responsibilities of DBA Oracle Architecture Physical

More information

How to Migrate your Database to Oracle Exadata. Noam Cohen, Oracle DB Consultant, E&M Computing

How to Migrate your Database to Oracle Exadata. Noam Cohen, Oracle DB Consultant, E&M Computing How to Migrate your Database to Oracle Exadata Noam Cohen, Oracle DB Consultant, E&M Computing Who am I Working with Oracle Since 2000 Versions 8.0 11g Consulting on all areas from Infrastructure to Application

More information

How to protect, restore and recover SQL 2005 and SQL 2008 Databases

How to protect, restore and recover SQL 2005 and SQL 2008 Databases How to protect, restore and recover SQL 2005 and SQL 2008 Databases Introduction This document discusses steps to set up SQL Server Protection Plans and restore protected databases using our software.

More information

About the Author About the Technical Contributors About the Technical Reviewers Acknowledgments. How to Use This Book

About the Author About the Technical Contributors About the Technical Reviewers Acknowledgments. How to Use This Book About the Author p. xv About the Technical Contributors p. xvi About the Technical Reviewers p. xvi Acknowledgments p. xix Preface p. xxiii About This Book p. xxiii How to Use This Book p. xxiv Appendices

More information

Oracle Database 11g: Administration Workshop II DBA Release 2

Oracle Database 11g: Administration Workshop II DBA Release 2 Oracle Database 11g: Administration Workshop II DBA Release 2 This course takes the database administrator beyond the basic tasks covered in the first workshop. The student begins by gaining a much deeper

More information

Setup Flashback Database on Data Guard Physical Standby Database for SAP Customers

Setup Flashback Database on Data Guard Physical Standby Database for SAP Customers An Oracle White Paper January 200 Setup Flashback Database on Data Guard Physical Standby Database for SAP Customers Database Version : g Release 2 Preface... 2 Requirements... 4 Aim of the document...

More information

Pass4Sure.1z0-034_120.Q&A

Pass4Sure.1z0-034_120.Q&A Pass4Sure.1z0-034_120.Q&A Number: 1z0-034 Passing Score: 800 Time Limit: 120 min File Version: 16.02 http://www.gratisexam.com/ These are the most accurate study questions. Just focus on these and sit

More information