The Challenges of Oracle Cloning. Safa Alak Consulting System Engineer

Size: px
Start display at page:

Download "The Challenges of Oracle Cloning. Safa Alak Consulting System Engineer"

Transcription

1 The Challenges of Oracle Cloning Safa Alak Consulting System Engineer

2 Agenda Challenges Traditional Approach for Cloning The command Line Way Using RMAN 10G R2 Transportable Database Option Storage Replication Using FLexClone to Replicate Oracle Oracle 11g Real Application Testing Oracle E Business Suite Replication On line Demo 2008 NetApp. All rights reserved. 2

3 DBA Chalenges Need reliable backup restore, and DR solution Re-organize Plan Install Configure systems, forecast storage accurately Create several clones, lengthy process, expensive Upgrade Pain Points Implement Testing requires duplicate data, lengthy and expensive process Patch Deploy Need reliable backup and recovery solution Tune & Maintain Mirror prod. data to test and dev system, lengthy process 2008 NetApp. All rights reserved. 3 Need reliable backup and recovery solution

4 Cloning Oracle Database Database cloning is a procedure by which you can create an exact copy of an Oracle database without doing a full export/import. This method is used frequently by DBAs to update test or development environments from production NetApp. All rights reserved. 4

5 Cloning of Oracle Business Suite Cloning is the process of creating an identical copy of an already existing Oracle Applications system, including both the application-tier and database-tier. Oracle Business Suite clones are more complex than database clone. Key application information, including configuration files and patches residing both in the database and application layers, must all be copied to gain a fully useable application environment clone. To perform this copying manually requires editing more than 360 commands. To simplify the challenges, Oracle created a cloning utility called RapidClone, which aids in the reconfiguration of oracle 11i environment, but does not usually perform the physical copying steps required to create a clone. Copying typically, requires running time-consuming, copying utilities, usually when the system is offline NetApp. All rights reserved. 5

6 The Command Line Way 1. On SQL*Plus, sign on as SYSDBA and issue: alter database backup controlfile to trace The command will generate a SQL script in user_dump_dest that can be used to regenerate the database 2. Shutdown the old database or put it in hotbackup mode 3. Copy all data files into the new directories on the new server 4. Copy and Edit the Control file Using the output syntax from step 1 to point to the new database 5. Remove the recover database and alter database open from script created in NetApp. All rights reserved. 6

7 6. Re-names of the data files names that have changed. 7. Create the bdump, udump and cdump directories 8. Copy-over the old init.ora file 9. Start the new database in nomount 10. Put the database in archive log mode if it is not in that mode 2008 NetApp. All rights reserved. 7

8 STARTUP NOMOUNT CREATE CONTROLFILE SET DATABASE "MYCLONE" RESETLOGS NOARCHIVELOG MAXLOGFILES 16 MAXLOGMEMBERS 3 MAXDATAFILES 100 MAXINSTANCES 8 MAXLOGHISTORY 292 LOGFILE GROUP 1 '/oracle/oradata/myclone/redo01.log' SIZE 10M, GROUP 2 '/oracle/oradata/myclone/redo02.log' SIZE 10M, GROUP 3 '/oracle/oradata/myclone/redo03.log' SIZE 10M DATAFILE '/oracle/oradata/myclone/system01.dbf', '/oracle/oradata/myclone/undotbs01.dbf', '/oracle/oradata/myclone/sysaux01.dbf', '/oracle/oradata/myclone/users01.dbf' CHARACTER SET WE8ISO8859P1 ; 2008 NetApp. All rights reserved. 8

9 Cloning using RMAN backup 1. Backup the source DB using RMAN 2. Create new instance of Oracle called auxiliary instance 3. Insure that networking is configured properly so that you can connect to source DB and auxiliary DB 4. Create or copy init.ora, spfile and password file as needed. You can borrow the files from the source DB. 5. Set the following parameters using alter system background_dump_dest ; user_dump_dest ; core_dump_dest ; control_files ; db_name ; instance_name (remove any reference to the source DB) 2008 NetApp. All rights reserved. 9

10 6. Insure that networking is configured properly for the cloned database in listner.ora and tnsnames.ora 7. Connect RMAN to the source DB and the cloned one using the syntax: rman target auxiliary 8. Use a script like: 2008 NetApp. All rights reserved. 10

11 run { allocate auxiliary channel d1 type disk; set newname for datafile 1 to ; set newname for datafile 2 to ; set newname for datafile 3 to ; set newname for datafile 5 to ; duplicate target database to clonedb logfile group 1 ('C:\CLONE\log01.rdo') size 10m reuse, group 2 ('C:\CLONE\log02.rdo') size 10m reuse; } 2008 NetApp. All rights reserved. 11

12 Transportable Database Option Oracle Database 10g Release 2 added Transportable Database (TDB), which is the capability to transport an entire database (user data and the Oracle dictionary) to other platform with the same endian format. TDB uses Recovery Manager (RMAN) to convert the database files to the new target platform format and create scripts to facilitate in the migration process NetApp. All rights reserved. 12

13 Using TDB to migrate a database to a new platform of the same endian format consists of the following high-level steps: 1. Check prerequisites 2. Identify external files and directories 3. Start the database in READ ONLY mode 4. Verify the database is ready for migration 5. Run RMAN CONVERT DATABASE 6. Move necessary files to the target system 7. Complete the migration 2008 NetApp. All rights reserved. 13

14 Storage Replication The Storage vendors provide with host tools to create clone of the Oracle DB or Oracle Apps. The main function of these tools are: 1. Interact with Oracle and get data files, logs and configuration files information 2. Identify storage components. 3. Creates clone of those storage components on the luns or volume levels 4. Use storage clone or snaps to create the clone copy. Once the Storage system provides storage replica, the Oracle admin can do house keeping to rename the database to clone DB NetApp. All rights reserved. 14

15 The Storage vendors provides different capabilities to rename the database and do house keeping work. The same technique, provides the Oracle admin with options to implement the following: Backup and restore operations Disaster Recovery With Oracle E Business Suite, you can run the RapidClone utility after doing storage replication for the whole Apps DB environment NetApp. All rights reserved. 15

16 Database Cloning and the Application Development Process PROD DEV MAINT SECONDARY (DR) TEST/QA RPT/ETL Full or partial database copies required for: App and DB Development Maintenance (OS, DB upgrade) Test and QA Training and Demos Reporting and DW ETL Ability to do this quickly, correctly, and efficiently directly impacts Application Development and Deployment 2008 NetApp. All rights reserved. 16

17 Traditional Approaches to Cloning Copy Offline Online (using a mirror or standby database, snapshots, and log-based consistent recovery) Redirected restore From disk- or tape-based backups Production Mirrored Copy Dev 1 Dev 2 Dev N Test 1 Test 2 Test N 2008 NetApp. All rights reserved. 17

18 Traditional Approaches to Cloning (cont) Challenges and pain points Limited storage resources 100% storage capacity overhead per instance, or custom partial extraction scripts Long lead-time requirements Process heavy (I.e., Many approvals required.) Storage resource allocation Manual or scripted operations subject to human error Downtime (offline) or degraded production system performance (online) during copy Restoring the baseline requires repeat of this process 2008 NetApp. All rights reserved. 18 Apps./Biz. Network Systems Database Storage

19 Database Maintenance with FlexClones Production Productio n DB Clones Mirrored Copy Dev 1 Dev 2 Dev N Test 1 Test 2 Test N Benefits Instantaneous copies Low resource overhead Inexpensive Easy and relatively inexpensive way to make copies of a production database without impacting the database Use database clones to test migrations, apply bug fixes, upgrades, and patches Easily reallocate storage for a database and its transaction log files 2008 NetApp. All rights reserved. 19

20 Application Development and Testing Example: Traditional Approach Production Mirrored Copy Dev 1 Dev 2 Dev 3 Test 1 Test 2 Test 3 Production database 100GB Mirror copy 100GB Development copies 300GB Testing copies 300GB Total: 800GB 8x actual storage requirement Time consuming Resource overhead 2008 NetApp. All rights reserved. 20

21 Application Development and Testing Example: NetApp Approach Production Mirrored Copy Dev 1 Dev 2 Dev 3 Test 1 Test 2 Test 3 Production database 100GB Mirror copy 100GB Development copies 30GB Testing copies 30GB Total: 260GB Over 67% reduction in storage required Near instantaneous copies Negligible overhead Ability to have many more test and dev copies more clones = higher productivity Assumption: up to 10% change in data in the test and dev environments 2008 NetApp. All rights reserved. 21

22 Real Application Testing Option PRODUCTION Challenge : How to create a point in time snapshot 22 1 Snapshot 2008 NetApp. All rights reserved. Capture 2 Workload 3 Replay SnapMirror /SyncMirror 4 FlexClone Transactio ns and timing only No clients or middle tier TEST Maximiz required e testing efforts with multiple FlexClo ne volumes

23 Oracle Austin Data Center Austin Data Center Stats More than 20,000+ servers Largest Dell/Linux installation on earth Scaling at over 100 servers/week 6,400+ terabytes of NetApp storage Scaling at over 60TBs of storage each month Over 500 mission-critical customers' apps hosted on the premises Primary data center for 50,000+ Oracle employees 2 acre of data center raised floor space Using storage replication for cloning Sources: Oracle Magazine Mar/Apr 2005 and Oracle ADC Executives 2008 NetApp. All rights reserved. 23

24 E-Business Suite: Cloning scenarios Singlenode to Singlenode Single-node to Multi-node Multi-nodes to Multi-nodes Multi-nodes to Single-node Cloning is a complex and resource intensive task NetApp. All rights reserved. 24

25 Oracle Recommends (Oracle MetaLink : ) - Cloning mechanism Cloning Scenarios: (Many physical copies high cost) Cloning Single System with Rapid Clone Copy the Application Tier File System Copy the Database Tier File System & Database Cloning a single node system to a multi-node system Copy the Application Tier File System Repeat above copy for every middle tier node Copy the Database Tier File System & Database Adding a new node to an existing System Copy the Application Tier File System to new node Run Oracle Rapid clone utility to complete configuration cd <COMMON_TOP>/clone/bin perl adclone.pl (if cloning) adaddnode.pl (if adding a node) 2008 NetApp. All rights reserved. 25

26 Cloning the Application Tier System using FlexClone Verify prerequisites and perform clone preparation steps Clone Apps Tier Filesystem Create a FlexClone volume for Application Tier filesystem snap create u03 OraAppsBak vol clone create AppsClone b u03 OraAppsBak (FlexClone volume takes seconds compared to physical copy) Mount the newly created cloned volume Perform configuration (adcfgclone.pl) and post clone tasks Oracle MetaLink Note NetApp. All rights reserved. 26

27 Cloning Oracle E Business Suite 1. Run system configuration on the Application tier: <COMMON_TOP>/admin/scripts/<SID>/adautocfg.sh Use the APPS password when prompted. Run system configuration on the database tier: <RDBMS ORACLE_HOME>/appsutil/<SID>/scripts/adautocfg.sh Use the APPS password when prompted. 2. Copy AutoConfig to the RDBMS ORACLE_HOME: Apply patch to acquire adchkcfg utility. Create appsutil.zip file by: perl <AD_TOP>/bin/admkappsutil.pl. Copy appsutil.zip file to the <RDBMS ORACLE_HOME> unzip -o appsutil.zip 3. Generate the database context file: cd <RDBMS ORACLE_HOME>/appsutil/bin adbldxml.sh tier=database appsuser=<appsuser> appspasswd=<appspwd> Output log is written to: $ORACLE_HOME/appsuti/out/<SID>/cfgcheck.txt 4. Generate and apply AutoConfig configuration file: cd <RDBMS ORACLE_HOME>/appsutil/bin adconfig.sh contextfile=<context> appspass=<appspwd> 2008 NetApp. All rights reserved. 27

28 6. Prepare for source database clone: cd <RDBMS ORACLE_HOME>/appsutil/scrips/<SID>./perl adpreclone.pl dbtier 7. Prepare for source application clone: cd <COMMON_TOP>/admin/scripts/<SID>./perl adpreclone.pl appstier 8. Copy the application tier file system: Logon to the source system as APPLMGR and shut down the server processes. Copy the following application directories from the source to the target node/file system: <APPL_TOP> <OA_HTML> <OA_JAVA> <COMMON_TOP/util> <COMMON_TOP/clone> <806 ORACLE_HOME> <ias ORACLE_HOME> Shut down the source database and copy it to the target node/file system. Restart the source database and source application server processes NetApp. All rights reserved. 28

29 9. Configure the target system database sever: cd <RDBMS ORACLE_HOME>/appsutil/clon/bin./perl adcfgclone.pl dbtier 10. Configure the target system application tier: cd <COMMON_TOP>/clone/bin./perl adcfgclone.pl appstier 2008 NetApp. All rights reserved. 29

30 Online Demo 2008 NetApp. All rights reserved. 30

31 Thank you 2008 NetApp. All rights reserved. 31

Cloning Oracle Applications Environments. Introduction. AutoConfig Components.

Cloning Oracle Applications Environments. Introduction. AutoConfig Components. www.jaggy.com Cloning Oracle Applications Environments Introduction Cloning Oracle Applications 11i instances can be a long and boring task. Either if you are an APPS DBA in a production or development

More information

NetApp Solutions for Oracle

NetApp Solutions for Oracle NetApp Solutions for Oracle for BCCServices HROUG, Rovinj Oct. 19th 2007 Bernd Dultinger Sales Manager Eastern Europe Agenda NetApp and Oracle Partnership NetApp and Oracle Highlights NetApp Solutions

More information

Oracle Backup and Recovery with NetApp Storage. Klaus Wagner Solution Architect

Oracle Backup and Recovery with NetApp Storage. Klaus Wagner Solution Architect Oracle Backup and Recovery with NetApp Storage Klaus Wagner Solution Architect Challenge: Expensive Backup and Restore Windows Time to Backup Time to Recover To Tape From Tape Redo Logs Performance degraded

More information

Contents. 1> What is Cloning and How to do Single Node Cloning on Single machine Page > Cloning prerequisites steps Page 3-4

Contents. 1> What is Cloning and How to do Single Node Cloning on Single machine Page > Cloning prerequisites steps Page 3-4 Contents 1> What is Cloning and How to do Single Node Cloning on Single machine Page 2-2 2> Cloning prerequisites steps Page 3-4 3> Prepare Source System Page 5-6 4> Copy Source Node File System Page 7-8

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

Author A.Kishore

Author A.Kishore Upgrade Oracle Applications from R12.1.1 to R12.1.3 For instructions on applying Oracle E-Business Suite 12.1.3 Release Update Pack (12.1.3), features and other information, please refer to My Oracle Support

More information

Contents. 1> What is Cloning and How to do Single Node Cloning on Single machine Page > Cloning steps Page 2-4

Contents. 1> What is Cloning and How to do Single Node Cloning on Single machine Page > Cloning steps Page 2-4 Contents 1> What is Cloning and How to do Single Node Cloning on Single machine Page 2-2 2> Cloning steps Page 2-4 3> Prepare Source System Page 4 6 4> Copy Source Node File System Page 7-9 5> Configure

More information

Adding an Additional Node to an existing Oracle Applications Instance Using Rapidclone

Adding an Additional Node to an existing Oracle Applications Instance Using Rapidclone Adding an Additional Node to an existing Oracle Applications Instance Using Rapidclone This document describes, how we can add an additional node to an existing Oracle Applications Instance using rapidclone

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

Cloning Methods for E-Business Suite 12.1 and 12.2

Cloning Methods for E-Business Suite 12.1 and 12.2 Cloning Methods for E-Business Suite 12.1 and 12.2 Cox Enterprises, Inc. Cox Enterprises is a leading communications, media and automotive services company. We are a top 10 national player, based on revenues,

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

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

Lesson 2 RMAN Architecture

Lesson 2 RMAN Architecture RMAN Architecture 2.1 Lesson 2 RMAN Architecture An introduction to the architecture and components used by the RMAN utility. SKILLBUILDERS Author: Dave Anderson, SkillBuilders RMAN Architecture 2.2 2.2

More information

White Paper. Using SVA SnapShot With Oracle June, 2001 TL-ENG-PRD-0477-A1 TL-ENG-PRD-0477-A01

White Paper. Using SVA SnapShot With Oracle June, 2001 TL-ENG-PRD-0477-A1 TL-ENG-PRD-0477-A01 White Paper Using SVA SnapShot With Oracle June, 2001 TL-ENG-PRD-0477-A1 TL-ENG-PRD-0477-A01 Table of Contents 1 Abstract... 5 2 Understanding SnapShot... 6 2.1 How Does SnapShot Work?...6 3 Architecture

More information

E-Business Cloning Six Easy Steps, Now Three Easy Steps. Michael Brown BlueStar

E-Business Cloning Six Easy Steps, Now Three Easy Steps. Michael Brown BlueStar E-Business 12.2.5 Cloning Six Easy Steps, Now Three Easy Steps Michael Brown BlueStar mbrown@bluestarinc.com Who Am I? Over 20 years experience with Oracle Database Over 15 years experience with E-Business

More information

Upgrade Oracle Applications from R to R12.1.2

Upgrade Oracle Applications from R to R12.1.2 Upgrade Oracle Applications from R12.1.1 to R12.1.2 Reference Note - Oracle E-Business Suite Readme, Release 12.1.2 (Doc ID 949406.1) 1> Database Preparation Guidelines for an E-Business Suite Release

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

Staged APPL_TOP approach - Key to achieve tolerable downtime for Oracle Apps migrations

Staged APPL_TOP approach - Key to achieve tolerable downtime for Oracle Apps migrations Staged APPL_TOP approach - Key to achieve tolerable downtime for Oracle Apps migrations Nikhil Kumar Infosys Technologies Limited Nagarjuna Cherukuri Navo Systems Inc. Learning Objectives As a result of

More information

Maximum Availability Architecture (MAA): Oracle E-Business Suite Release 12

Maximum Availability Architecture (MAA): Oracle E-Business Suite Release 12 1 2 Maximum Availability Architecture (MAA): E-Business Suite Release 12 Richard Exley High Availability Systems and Maximum Availability Architecture Group Server Technologies Metin

More information

12.1 Multitenancy in real life

12.1 Multitenancy in real life 12.1 Multitenancy in real life 2017 HOUG szakmai nap Jozsef Horvath Budapest, 2017-11-08 Disclaimer This presentation: Does not intend to judge Oracle Multitenancy Does not intent to judge Oracle Corporation

More information

Author A.Kishore APPL_TOP/COMMON_TOP/10.1.2/ (linux1) racerp2 4 gb. RACDB2 (instance 2) HUB Eth0. Eth1

Author A.Kishore   APPL_TOP/COMMON_TOP/10.1.2/ (linux1) racerp2 4 gb. RACDB2 (instance 2) HUB Eth0. Eth1 Public Network Shared Application Tier file system APPL_TOP/COMMON_TOP/10.1.2/10.1.3 (linux1) racerp1 4 gb RACDB1 (instance 1) racerp2 4 gb RACDB2 (instance 2) Web Form CPS (PCP configured) Eth0 Eth1 HUB

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

Titan SiliconServer for Oracle 9i

Titan SiliconServer for Oracle 9i Titan SiliconServer for 9i Abstract Challenges facing deployment include the ever-growing size of the database and performance scalability. Enterprise businesses rely heavily on databases for day-to-day

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

IBM N Series. Store the maximum amount of data for the lowest possible cost. Matthias Rettl Systems Engineer NetApp Austria GmbH IBM Corporation

IBM N Series. Store the maximum amount of data for the lowest possible cost. Matthias Rettl Systems Engineer NetApp Austria GmbH IBM Corporation IBM N Series Store the maximum amount of data for the lowest possible cost Matthias Rettl Systems Engineer NetApp Austria GmbH. Agenda Challenges and Concerns Increasing Efficiency - How We Do It The Net

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

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 11g Data Guard

Oracle Database 11g Data Guard Oracle Database 11g Data Guard Overview This course introduces the delegate to the main architectural concepts of Data Guard. Delegates will learn how to use Oracle Data Guard to protect Oracle Databases

More information

Question No : 1 Which three are the correct definitions of the objects in the Oracle Applications database?(choose three.)

Question No : 1 Which three are the correct definitions of the objects in the Oracle Applications database?(choose three.) Volume: 225 Questions Question No : 1 Which three are the correct definitions of the objects in the Oracle Applications database?(choose three.) A. Hybrid objects contain materialized view objects, and

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

Database Virtualization and Consolidation Technologies. Kyle Hailey

Database Virtualization and Consolidation Technologies. Kyle Hailey Database Virtualization and Consolidation Technologies Kyle Hailey Average customer makes 12 copies of production - Charles Garry, Oracle Database Virtualization consolidates copies of production Database

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

Rapid database cloning using SMU and ZFS Storage Appliance How Exalogic tooling can help

Rapid database cloning using SMU and ZFS Storage Appliance How Exalogic tooling can help Presented at Rapid database cloning using SMU and ZFS Storage Appliance How Exalogic tooling can help Jacco H. Landlust Platform Architect Director Oracle Consulting NL, Core Technology December, 2014

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

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

Oracle Database 11g: Administration I

Oracle Database 11g: Administration I Oracle 1z0-052 Oracle Database 11g: Administration I Version: 7.0 Topic 1, Volume A Oracle 1z0-052 Exam QUESTION NO: 1 You notice that the performance of the database has degraded because of frequent checkpoints.

More information

Oracle. Exam Questions 1Z Oracle Database 11g: Administration I. Version:Demo

Oracle. Exam Questions 1Z Oracle Database 11g: Administration I. Version:Demo Oracle Exam Questions 1Z0-052 Oracle Database 11g: Administration I Version:Demo 1. You notice that the performance of the database has degraded because of frequent checkpoints. Which two actions resolve

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

Oracle Multitenant What s new in Oracle Database 12c Release ?

Oracle Multitenant What s new in Oracle Database 12c Release ? Oracle Multitenant What s new in Oracle Database 12c Release 12.1.0.2? Saurabh K. Gupta Principal Technologist, Database Product Management Who am I? Principal Technologist, Database Product Management

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

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

ORACLE 11g Database Replay

ORACLE 11g Database Replay ORACLE 11g Database Replay October 2 nd, 2007 Inderpal S. Johal Principal Consultant Agenda Why DB Replay DB Replay Overview System Architecture Supported Workloads Capture the Workload Pre-Processing

More information

Oracle DBA Course Content

Oracle DBA Course Content 1 Oracle DBA Course Content Database Architecture: Introduction to Instance and Database How user connects to database How SQL statement process in the database Oracle data dictionary and its role Memory

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

Migration of Oracle Databases to NetApp Storage Systems

Migration of Oracle Databases to NetApp Storage Systems Technical Report Migration of Oracle Databases to NetApp Storage Systems Jeffrey Steiner, NetApp August 2016 TR-4534 Important Consult the Interoperability Matrix Tool (IMT) to determine whether the environment,

More information

Virtualizing Oracle on VMware

Virtualizing Oracle on VMware Virtualizing Oracle on VMware Sudhansu Pati, VCP Certified 4/20/2012 2011 VMware Inc. All rights reserved Agenda Introduction Oracle Databases on VMware Key Benefits Performance, Support, and Licensing

More information

Moving Databases to Oracle Cloud: Performance Best Practices

Moving Databases to Oracle Cloud: Performance Best Practices Moving Databases to Oracle Cloud: Performance Best Practices Kurt Engeleiter Product Manager Oracle Safe Harbor Statement The following is intended to outline our general product direction. It is intended

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

Installation and Administration Guide

Installation and Administration Guide SnapManager 3.3.1 for Oracle Installation and Administration Guide For Windows September 2017 215-08440_C0 doccomments@netapp.com Table of Contents 3 Contents What SnapManager for Oracle is... 10 What

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

Oracle12c Release 1 New Features for Administrators (5 Days)

Oracle12c Release 1 New Features for Administrators (5 Days) www.peaklearningllc.com Oracle12c Release 1 New Features for Administrators (5 Days) Course Description This course provides a complete, hands-on introduction to the newest release of Oracle Enterprise

More information

The Best Storage for Virtualized Environments

The Best Storage for Virtualized Environments The Best Storage for Virtualized Environments Paul Kessler Asia Pacific Solutions Marketing Alliances, NetApp Nov.4,2008 The Best Storage for Virtualized Environments Paul Kessler Solutions Marketing &

More information

Data Guard: Setup and Administration. By Ashok Kapur Hawkeye Technology, Inc.

Data Guard: Setup and Administration. By Ashok Kapur Hawkeye Technology, Inc. Data Guard: Setup and Administration By Ashok Kapur. Agenda Introduction New Features Logical and Physical Standby Databases Setup Physical and Logical Standby Databases Administration including Switchover

More information

Oracle Database 12c R2: New Features for 12c R1 Administrators Ed 1

Oracle Database 12c R2: New Features for 12c R1 Administrators Ed 1 Oracle University Contact Us: Local: 0180 2000 526 Intl: +49 8914301200 Oracle Database 12c R2: New Features for 12c R1 Administrators Ed 1 Duration: 5 Days What you will learn The Oracle Database 12c

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

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

CHAPTER. Upgrading to Oracle Database 11g

CHAPTER. Upgrading to Oracle Database 11g CHAPTER 2 Upgrading to Oracle Database 11g 49 50 Oracle Database 11g DBA Handbook I f you have previously installed an earlier version of the Oracle database server, you can upgrade your database to Oracle

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

FILE / RMAN BACKUP PRODUCTS MANUAL EBOOK

FILE / RMAN BACKUP PRODUCTS MANUAL EBOOK 31 October, 2017 FILE / RMAN BACKUP PRODUCTS MANUAL EBOOK Document Filetype: PDF 111.76 KB 0 FILE / RMAN BACKUP PRODUCTS MANUAL EBOOK You took this cold RMAN backup from a development database, your developpers

More information

E-Business Suite 11i Upgrade to and A Technical Comparison

E-Business Suite 11i Upgrade to and A Technical Comparison COLLABORATE 2014 OAUG Forum E-Business Suite 11i Upgrade to 12.1.3 and 12.2.3 - A Technical Comparison Biju Thomas, OneNeck IT Solutions Abstract Much awaited 12.2 release of EBS has come. Always there

More information

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. Recovery Manager (RMAN): Not Just for Backups Anymore Steven Wertheimer, Oracle, Senior Director Jeff Branan, TDS Telecom, Database

More information

Deploying High Availability and Business Resilient R12 Applications over the Cloud

Deploying High Availability and Business Resilient R12 Applications over the Cloud Deploying High Availability and Business Resilient R12 Applications over the Cloud Session ID#: 13773 Deploying R12 applications over the cloud - The best practices you need to know and the pitfalls to

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

VERITAS Storage Foundation for Windows FlashSnap Option

VERITAS Storage Foundation for Windows FlashSnap Option VERITAS Storage Foundation for Windows FlashSnap Option Snapshot Technology for Microsoft Windows Server 2000 and Windows Server 2003 August 13, 2004 1 TABLE OF CONTENTS Introduction...3 Fast Data Recovery...3

More information

UNIVERSITY AUTHORISED EDUCATION PARTNER (WDP)

UNIVERSITY AUTHORISED EDUCATION PARTNER (WDP) Audience Data Warehouse Administrator Database Administrators Support Engineer Technical Administrator Technical Consultant Related Training Required Prerequisites Knowledge of Oracle Database 12c Knowledge

More information

Recovery Manager Concepts

Recovery Manager Concepts Recovery Manager Concepts Joseph S Testa Data Management Consulting (64) 79-9000 Ohio Oracle Users Group Apr 2003 Introduction Who is using RMAN for backup/recovery? Have you tested your recovery scenarios?

More information

SELECTING AN ORACLE BACKUP SOLUTION PART 3: HOT BACKUPS WITH THE NETBACKUP FOR ORACLE ADVANCED BLI AGENT

SELECTING AN ORACLE BACKUP SOLUTION PART 3: HOT BACKUPS WITH THE NETBACKUP FOR ORACLE ADVANCED BLI AGENT VERITAS Education INSTRUCTOR ARTICLES APRIL 2003 1. Selecting an Oracle Backup Solution Part 3: Hot Backups with the NetBackup for Oracle Advanced BLI Agent 2. Using a Volume Snapshot to Recover a Lost

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

Designing Data Protection Strategies for Oracle Databases

Designing Data Protection Strategies for Oracle Databases WHITE PAPER Designing Data Protection Strategies for Oracle Databases VERITAS Backup Exec 9.1 for Windows Servers Agent for Oracle 11/20/2003 1 TABLE OF CONTENTS Introduction...3 Oracle Backup Basics...3

More information

TECHNOLOGY: Security Encrypting Tablespaces

TECHNOLOGY: Security Encrypting Tablespaces TECHNOLOGY: Security Encrypting Tablespaces By Arup Nanda Encrypt tablespaces transparently without affecting performance. In an era when data security is critical in almost every type of business, databases

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

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

Question No : 1 Which three statements are true regarding the use of the Database Migration Assistant for Unicode (DMU)?

Question No : 1 Which three statements are true regarding the use of the Database Migration Assistant for Unicode (DMU)? Volume: 176 Questions Question No : 1 Which three statements are true regarding the use of the Database Migration Assistant for Unicode (DMU)? A. A DBA can check specific tables with the DMU B. The database

More information

EBOOK. NetApp ONTAP Cloud FOR MICROSOFT AZURE ENTERPRISE DATA MANAGEMENT IN THE CLOUD

EBOOK. NetApp ONTAP Cloud FOR MICROSOFT AZURE ENTERPRISE DATA MANAGEMENT IN THE CLOUD EBOOK NetApp ONTAP Cloud FOR MICROSOFT AZURE ENTERPRISE DATA MANAGEMENT IN THE CLOUD NetApp ONTAP Cloud for Microsoft Azure The ONTAP Cloud Advantage 3 Enterprise-Class Data Management 5 How ONTAP Cloud

More information

Secrets of Successful Database 11gR2 Upgrades in an E-Business Suite Environment S316358

Secrets of Successful Database 11gR2 Upgrades in an E-Business Suite Environment S316358 Secrets of Successful Database 11gR2 Upgrades in an E-Business Suite Environment S316358 Michael Brown Colibri Limited mbrown@colibrilimited.com http://www.colibrilimited.com http://blog.michael-brown.org

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

Chapter One. Concepts BACKUP CONCEPTS

Chapter One. Concepts BACKUP CONCEPTS Chapter One 1 Concepts Backup and recovery is not a single, discrete subject, but a collection of methods, strategies, and procedures to protect the data in your database and provide a means of recovery

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

Modernize Your Backup and DR Using Actifio in AWS

Modernize Your Backup and DR Using Actifio in AWS FOR AWS Modernize Your Backup and DR Using Actifio in AWS 150105H FOR AWS Modernize Your Backup and DR Using Actifio in AWS What is Actifio? Actifio virtualizes the data that s the lifeblood of business.

More information

Instant Cloning: Boosting Application Development.! Kyle Hailey

Instant Cloning: Boosting Application Development.! Kyle Hailey Instant Cloning: Boosting Application Development! Kyle Hailey kyle@delphix.com! http://kylehailey.com Problem in IT CIO Magazine Survey: 60% Projects Over Schedule! 85% delayed waiting for data Data is

More information

Protecting Oracle databases with HPE StoreOnce Catalyst and RMAN

Protecting Oracle databases with HPE StoreOnce Catalyst and RMAN Protecting Oracle databases with HPE StoreOnce Catalyst and RMAN Oracle database backup using the HPE StoreOnce Catalyst Plug-in for Oracle RMAN Technical white paper Technical white paper Contents Introduction...

More information

What is Real Application Testing?

What is Real Application Testing? Real Application Testing Real Application Testing Enterprise Manager Management Packs Enhancements What is Real Application Testing? New database option available with EE only Includes two new features

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

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

Mike Hughes Allstate Oracle Tech Lead, Oracle Performance DBA

Mike Hughes Allstate Oracle Tech Lead, Oracle Performance DBA Implementing Oracle Maximum Availability Architecture at Allstate Insurance, Using Oracle 10g RAC, ASM, Oracle Data Guard, Flashback Database, RMAN and Oracle Grid Control November 12, 2007 Mike Hughes

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

Oracle 1Z0-053 Exam Questions & Answers

Oracle 1Z0-053 Exam Questions & Answers Oracle 1Z0-053 Exam Questions & Answers Number: 1Z0-053 Passing Score: 660 Time Limit: 120 min File Version: 38.8 http://www.gratisexam.com/ Oracle 1Z0-053 Exam Questions & Answers Exam Name: Oracle Database

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

Designing Data Protection Strategies for Oracle Databases

Designing Data Protection Strategies for Oracle Databases WHITE PAPER Designing Data Protection Strategies for Oracle Databases VERITAS Backup Exec 9.0 for Windows Servers Agent for Oracle VERSION INCLUDES TABLE OF CONTENTS STYLES 1 TABLE OF CONTENTS Introduction...3

More information

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

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

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

OAUG Webinar: E-Business Suite New Oracle ADClone 12.2 Options. Oracle E-Business 11i/12.1/12.2 Six Easy Steps -- Now Three Easy Steps

OAUG Webinar: E-Business Suite New Oracle ADClone 12.2 Options. Oracle E-Business 11i/12.1/12.2 Six Easy Steps -- Now Three Easy Steps OAUG Webinar: E-Business Suite New Oracle ADClone 12.2 Options Oracle E-Business 11i/12.1/12.2 Six Easy Steps -- Now Three Easy Steps Tom Blanford, Oracle E-Business Suite Architect and DBA Michael Barone,

More information

Accelerated NCDA Boot Camp Data ONTAP 7-Mode Course ANCDABC87; 5 Days, Instructor-led

Accelerated NCDA Boot Camp Data ONTAP 7-Mode Course ANCDABC87; 5 Days, Instructor-led Accelerated NCDA Boot Camp Data ONTAP 7-Mode Course ANCDABC87; 5 Days, Instructor-led Course Description Prepare for success when taking the NS0-155 NetApp Certified Data Management 7-Mode Administrator

More information

Chapter 14: Backing up the Oracle Database Tapies covered in this section. Backup Overview. How often should backups be performed?

Chapter 14: Backing up the Oracle Database Tapies covered in this section. Backup Overview. How often should backups be performed? Chapter 14: Backing up the Oracle Database Tapies covered in this section Backup Overview + Planning Database Backup + Causes of System Failure Backup Considerations Types of Backup + Hot Backup + Cold

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

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Oracle University Contact Us: Toll Free: 0008004401672 Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Duration: 5 Days What you will learn In this Oracle Database 12c R2: Backup and Recovery

More information

Imagination To Realization

Imagination To Realization Imagination To Realization Database Disaster Recovery and More Presented by: Stephen Rea University of Arkansas Cooperative Extension Service April 3, 2006 Monday 3:30 PM April 2-5 Orlando, Florida Session

More information

E-Business Suite 12.2 Configuration Management II

E-Business Suite 12.2 Configuration Management II E-Business Suite 12.2 Configuration Management II Sumeet Kabra Agenda E-Business Suite 12.2 Applications Architecture [ Recap ] Techstack Configurations [ Recap ] Applications Configuration Management

More information

Oracle Database 12c: Backup and Recovery Workshop Ed 2 NEW

Oracle Database 12c: Backup and Recovery Workshop Ed 2 NEW Oracle University Contact Us: 0845 777 7711 Oracle Database 12c: Backup and Recovery Workshop Ed 2 NEW Duration: 5 Days What you will learn This Oracle Database 12c: Backup and Recovery Workshop will teach

More information

Redefining Data Protection

Redefining Data Protection Redefining Data Protection Title Page User s Guide for the NetVault:Backup APM for Oracle APM Version 5.000 NVE 7009-7F 07/23-07 Copyrights NetVault:Backup - User s Guide for the NetVault:Backup APM for

More information