Oracle Database Cross Platform Migration Lucy Feng, DBAK

Size: px
Start display at page:

Download "Oracle Database Cross Platform Migration Lucy Feng, DBAK"

Transcription

1 Delivering Oracle Success Oracle Database Cross Platform Migration Lucy Feng, DBAK RMOUG QEW November 19, 2010

2 Business Requirements Migrate all Oracle databases to IBM zseries based Linux The database servers were on Sun SPARC, Linux or Solaris x86 Databases are on 10gR2: or Multiple databases need to be migrated within 4-hour window Database sizes range from 200 GB to 1.2 TB DBAK

3 Options Data Guard Standby is not an option because of the platform difference Export/Import or data pump take too long Oracle Streams is discarded because of the risk of data divergence The methods chosen are: Cross Platform Transportable Tablespace Transportable Database DBAK

4 Cross Platform Transportable Tablespace Transportable Tablespace is a feature introduced in 8i It allows nonsystem tablespaces to be moved from one database to another by physically grafting the tablespace datafiles into the control files on the target database, and then importing object metadata into the target database s dictionary DBAK

5 Cross Platform Transportable Tablespace Transportable tablespace (TTS) in 8i works between the same block size Oracle 9i removed the block size restriction, but still required homogeneous operating systems Oracle 10g introduced Cross Platform TTS (XTTS) which allows TTS to function across different platforms DBAK

6 How XTTS Works DBAK

7 Endian Format Endianness how multi-byte data is stored in computer memory Two formats Little Endian and Big Endian Dictated by the CPU architecture Linux, Windows use Little Endian byte order Sun Sparc, HPUX use Big Endian byte order Join V$DATABASE and V$TRANSPORTABLE_PLATFORM RMAN Convert performs endian conversion DBAK

8 RMAN Convert Convert datafile, convert tablespace and convert database Convert tablespace must be run from the source database Convert database can only be used when the source and target platforms share the same endian format. It creates a convert script and a transport script DBAK

9 RMAN Convert In addition to convert endian format, RMAN convert also: Reformats blocks of undo segments. It is required for transporting datafiles containing undo segments between platforms, regardless of endian format. Transports datafiles stored in ASM DBAK

10 RMAN Convert prerequisite Both the source and destination platforms must be supported by the convert command. Query V$TRANSPORTABLE_PLATFORM. Both source and destination databases must have COMPATIBLE set to or higher. Read-only tablespaces must be made read/write at least once. DBAK

11 RMAN Convert Datafile Syntax RMAN connect to destination database as target: CONVERT DATAFILE '/u01/oradata/datafile/undo.dbf' FROM PLATFORM ''Linux x86 64-bit'' FORMAT '+OCDPRD_DATA'; DBAK

12 How XTTS Works DBAK

13 Incrementally updated image copy backup An image copy is identical to the original file RMAN prefers to use an image copy over a backup set if you have both. There is more overhead in sorting through a backup set. Use switch command to point the database to the image copy datafile no need to restore RMAN takes an image copy of database as a base backup, and as subsequent incremental backups are taken, they are applied (recovered) on the image copies. DBAK

14 Incrementally updated image copy backup rman>backup incremental level 1 for recover of copy with tag 'ROLLING_BAKCUP' database; rman>recover copy of database with tag 'ROLLING_BACKUP'; Point in time recovery of the database cannot be performed before the last application of the incremental backup. Delayed merge is common. rman>run { recover copy of database with tag 'ROLLING_BACKUP'; backup incremental level 1 for recover of copy with tag 'ROLLING_BAKCUP' database;} DBAK

15 Servers and data movement Source server NFS server Target server Gigabit connection Hyper socket NFS Data store NFS Rman convert Data store DBAK

16 XTTS - Preparation Create the Destination Database STARTUP NOMOUNT CREATE DATABASE "CDSPRD" LOGFILE GROUP 1 ('+CDSPRD_ORADATA','+CDSPRD_ARCH') SIZE 500M, GROUP 2 ('+CDSPRD_ORADATA','+CDSPRD_ARCH') SIZE 500M, GROUP 3 ('+CDSPRD_ORADATA','+CDSPRD_ARCH') SIZE 500M, GROUP 4 ('+CDSPRD_ORADATA','+CDSPRD_ARCH') SIZE 500M DATAFILE '+CDSPRD_ORADATA' SIZE 501m autoextend on next 50m maxsize 20001m SYSAUX DATAFILE '+CDSPRD_ORADATA' SIZE 501m autoextend on next 50m maxsize 20001m UNDO TABLESPACE UNDO DATAFILE '+CDSPRD_ORADATA' SIZE 501m autoextend on next 50m maxsize 20001m DEFAULT TEMPORARY TABLESPACE TEMP TEMPFILE '+CDSPRD_ORADATA' SIZE 501m autoextend on next 50m maxsize 20001m MAXLOGFILES 20 MAXLOGMEMBERS 5 MAXDATAFILES 1000 MAXINSTANCES 5 MAXLOGHISTORY 2696 CHARACTER SET WE8ISO8859P1 ; DBAK

17 XTTS - Preparation Create the @@$ORACLE_HOME/rdbms/admin/prvtpool.plb select comp_name,version,status from dba_registry; DBAK

18 XTTS Preparation Generate the Conversion Script Run from the source database spool convert.rman prompt run { select 'CONVERT DATAFILE ''' file_name ''' FROM PLATFORM ''Linux x86 64-bit'' FORMAT ''+CDSPRD_ORADATA'';' from dba_tablespaces a, dba_data_files b where a.tablespace_name = b.tablespace_name and a.tablespace_name not in ('SYSTEM','SYSAUX') and contents = 'PERMANENT'; prompt } spool off DBAK

19 XTTS - Preparation Generate User Creation Script From Source and Run in Target spool gen_cre_user.sql select 'create user ' username ' identified by values ''' password ''';' from dba_users; spool off spool gen_alt_user.sql select 'alter user ' username ' identified by values ''' password ''';' from dba_users; spool off DBAK

20 XTTS - Steps Convert to Read Only spool tts_ro.sql select 'ALTER TABLESPACE ' tablespace_name ' READ ONLY;' from dba_tablespaces where tablespace_name not in ('SYSTEM','SYSAUX') and contents = 'PERMANENT'; spool off set heading on feedback DBAK

21 XTTS - Steps Export Metadata from the Source Database expdp userid=\'/ as sysdba\' parfile=tbs_exp.par cat tbs_exp.par directory=tbsdir dumpfile=tbs.dmp logfile=tbsexp.log transport_full_check=no transport_tablespaces=userdata,userindexes,users expdp userid=\'/ as sysdba\' directory=tbsdir \ dumpfile=full.dmp logfile=full.log \ content=metadata_only full=y DBAK

22 XTTS - Steps Execute the Convert Datafile Script in the Target Database Import Metadata in Target Database impdp userid=\'/ as sysdba\' parfile=tbs_imp.par cat tbs_imp.par directory=tbsdir dumpfile=tbs.dmp logfile=tbsimp.log transport_datafiles= '+CDSPRD_ORADATA/CDSPRD/DATAFILE/USERINDEXES ', '+CDSPRD_ORADATA/CDSPRD/DATAFILE/USERINDEXES ', DBAK

23 XTTS - Steps Import Metadata impdp userid=\'/ as sysdba\' directory=tbsdir dumpfile=full.dmp logfile=full.log DBAK

24 XTTS - Steps Set Tablespaces to Read/Write in Destination Database Run Post Conversion steps SHUTDOWN IMMEDIATE @?/rdbms/admin/utlrp.sql Restart database and validate DBAK

25 XTTS Check Self Containment Tablespaces transported must be self-contained Examples of object relationships that may cause containment violations: A table and its index An IOT and its overflow segment Table partitions and subpartitions A referential integrity DBAK

26 XTTS Check Self Containment for ts in (select tablespace_name from dba_tablespaces where tablespace_name not in ('SYSTEM','SYSAUX') and contents = 'PERMANENT') loop dbms_tts.transport_set_check(checklist,true,true); select * from transport_set_violations; DBAK

27 Transportable Database (TDB) TDB introduced in 10gR2. It is used to automate the movement of an entire database from one platform to another. The key is the source and the destination platforms must have the same endian format From the Source Database, query v$db_transportable_platform. If the target platform is in the output, using TDB is supported. DBAK

28 Transportable Database Process Check prerequisites dbms_tdb.check_external: external tables, directories or BFILES must be recreated on the target dbms_tdb.check_db: database read-only, active or in-doubt transactions, compatibility 10 or higher, etc. Transport the data files Run convert database command. Convert database generates a convert script and a transport script. Transport environment Copy the initialization parameters (pfile or spfile), listener.ora and tnsnames.ora to the target server. Start the target database Start the new database on the target system. Control file and redo logs will be recreated. DBAK

29 Transportable Database In a Nutshell Datafiles containing undo information need to be reformated to fit the target platform. Use RMAN convert datafile to convert them. Ensure datafiles are ready for conversion. Prepare the target database as if you are doing a database clone. Prepare pfile or spfile and password file. Prepare listener.ora and tnsnames.ora Recreate control file and redo logs. Open resetlogs DBAK

30 Transportable Database Steps Step 1 -- Restore Control File, mount and rename datafiles rman>startup nomount; rman>restore controlfile from '/zdb_nfs/atdprd/c '; rman>alter database mount; rman>switch database to copy; DBAK

31 Transportable Database Steps Step 2 Create the RMAN Conversion Script Sql> spool convert.rman prompt run { select 'CONVERT DATAFILE ''' f.name ''' FROM PLATFORM ''Solaris[tm] OE (64-bit)'' FORMAT ''+' d.name '_ORADATA'';' from v$dbfile f, v$database d; prompt } spool off DBAK

32 Transportable Database Steps Step 3 Startup Nomount and run the Conversion Script from Step 2 Step 4 Create a new Control File. Get new Datafile names from ASMCMD. Open Resetlogs Step 5 Run Post Conversion Steps Recreate TEMP Recompile PL/SQL Packages Step 6 Ensure Control File and Redo Logs are moved to ASM DBAK

33 Plan for downtime Plan for Downtime Outage Start Database is up Full backup, Daily incremental and merge Shutdown Startup mount Incremental backup and merge Convert and transfer Post steps DBAK

34 Speed it up Block change tracking 10g and up CTWR backgroup process tracks changed blocks as redo is generated and writes to a binary file. Sql>alter database enable block change tracking using file +ATDPROD_DATA ; Sql>select status, filename, bytes from v$block_change_tracking DBAK

35 Speed it up Allocate multiple channels for incremental backup Convert in parallel RUN { CONVERT DATAFILE '/cds_mnt/cdsprd/audit_data01.dbf', '/cds_mnt/cdsprd/index_data01.dbf',... '/cds_mnt/cdsprd/user_data01.dbf', '/cds_mnt/cdsprd/user_data02.dbf' FROM PLATFORM 'Linux x86 64-bit' PARALLELISM 3 DB_FILE_NAME_CONVERT '/cds_mnt/cdsprd/','+cdsprd_oradata/' ;} DBAK

36 Speed it up Convert datafiles of read-only tablespaces in advance Ensure NFS mount optimization How to optimize NFS Performance with NFS option DBAK

37 Recap When the source and the destination platforms are different and the endian formats are different create a receiving database, import metadata and use RMAN convert to convert datafiles of the transported tablespaces When the source and destination endian formats are the same use RMAN convert to convert datafiles with undo information and recreate the control file and redo logs. DBAK

38 Benefits of XTTS and TDB Reduced complexity and errors A high-level copy of data It moves objects as a unit, unlike table-by-table methods that could miss objects or rows of data No need to create or rebuild indexes Reduced downtime DBAK

39 E-Business Suite Database Cross Platform Transportable Tablespaces on 11i with 10gR Using Transportable Database to migrate Oracle E-Business Suite Release 11i using Oracle Database 10g Release 2 or 11g Enterprise Edition Using Transportable Database to migrate E-Business Suite R12 using Oracle Database 10gR2 or 11g DBAK

40 Contact Lucy Feng DBAK

41 About DBAK Oracle solution provider Co-founded in 2005 Based in Englewood, CO 2008 Emerging Business of the Year South Metro Denver Chamber of Commerce More than 130 implementations, upgrades, conversions, and support projects for 80+ clients Average 15 years of Oracle expertise Oracle Gold Partner DBAK

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

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

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

An Oracle White Paper January 2014. Oracle Database 12c: Full Transportable Export/Import

An Oracle White Paper January 2014. Oracle Database 12c: Full Transportable Export/Import An Oracle White Paper January 2014 Oracle Database 12c: Full Transportable Export/Import Introduction... 3 Benefits of Using Full Transportable Export/Import... 4 Full Transportable Export/Import Support

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

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 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 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

A Complete Cross Platform Database Migration Guide Using Import and Export Utility

A Complete Cross Platform Database Migration Guide Using Import and Export Utility A Complete Cross Platform Database Migration Guide Using Import and Export Utility (HP-UX on PA-RISC to Linux on x86 Architecture) Prepared by: migration_engg@visolve.com 4010 Moorpark Avenue, San Jose,

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

Cross-Platform Oracle Database Migration Using Transportable Tablespaces and EMC Open Replicator for Symmetrix

Cross-Platform Oracle Database Migration Using Transportable Tablespaces and EMC Open Replicator for Symmetrix Cross-Platform Oracle Database Migration Using Transportable Tablespaces and EMC Open Replicator for Best Practices Planning Abstract Starting with Oracle 10g, cross-platform transportable tablespaces

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

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

Oracle Database 10g & Multi-Terabyte Database Migration By: Saravanan Shanmugam and James Madison, The Hartford (http://www.thehartford.

Oracle Database 10g & Multi-Terabyte Database Migration By: Saravanan Shanmugam and James Madison, The Hartford (http://www.thehartford. Oracle Database 10g & Multi-Terabyte Database Migration By: Saravanan Shanmugam and James Madison, The Hartford (http://www.thehartford.com/) Migrating large Oracle databases such as data warehouses and

More information

Oracle DBA Course Contents

Oracle DBA Course Contents Oracle DBA Course Contents Overview of Oracle DBA tasks: Oracle as a flexible, complex & robust RDBMS The evolution of hardware and the relation to Oracle Different DBA job roles(vp of DBA, developer DBA,production

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

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

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

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

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

Reducing downtime using incremental backups and X-Platform TTS

Reducing downtime using incremental backups and X-Platform TTS Reducing downtime using incremental backups and X-Platform TTS Martin Bach, Practice Director, Enkitec 16:00 UK 10:00 Central US 17:00 Central Europe Check out the sponsors websites: www.enkitec.com www.red-gate.com/oracle

More information

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

Safeguard Sensitive Data in EBS: A Look at Oracle Database Vault, Transparent Data Encryption, and Data Masking. Lucy Feng

Safeguard Sensitive Data in EBS: A Look at Oracle Database Vault, Transparent Data Encryption, and Data Masking. Lucy Feng Delivering Oracle Success Safeguard Sensitive Data in EBS: A Look at Oracle Database Vault, Transparent Data Encryption, and Data Masking Lucy Feng RMOUG Training Days February 2012 About DBAK Oracle Solution

More information

Oracle Database 10g: New Features for Administrators

Oracle Database 10g: New Features for Administrators Oracle Database 10g: New Features for Administrators Course ON10G 5 Day(s) 30:00 Hours Introduction This course introduces students to the new features in Oracle Database 10g Release 2 - the database for

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

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

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

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

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

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

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

Roy F. Swonger Senior Director, Database Upgrade & Utilities Oracle Corporation. Updated: 08-DEC-2014

Roy F. Swonger Senior Director, Database Upgrade & Utilities Oracle Corporation. Updated: 08-DEC-2014 Different Ways to Upgrade and Migrate to Oracle Database 12c Roy F. Swonger Senior Director, Database Upgrade & Utilities Oracle Corporation Updated: 08-DEC-2014 Upgrade/Migrate Older Oracle Releases Oracle

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

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

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

Oracle 9i Database Release 2 Enterprise Edition

Oracle 9i Database Release 2 Enterprise Edition Oracle 9i Database Release 2 Enterprise Edition Creación de Logical Stanby Elaborado por: Armando Caballero Alvarado (acaballeroa@upao.edu.pe) DBA Universidad Privada Antenor Orrego de Trujillo Fecha Publicación:

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

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

Oracle 10g release 1. Administration. Database Outsourcing Experts

Oracle 10g release 1. Administration. Database Outsourcing Experts SYSAUX This new tablespace sits alongside the SYSTEM tablespace and serves the purpose of keeping system-related schemas out of the SYSTEJM tablespace. This includes AWR data, Log Miner data, Streams,

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

Oracle Database 11g: Administration Workshop II DBA Release 2

Oracle Database 11g: Administration Workshop II DBA Release 2 Oracle University Contact Us: +35929238111 Oracle Database 11g: Administration Workshop II DBA Release 2 Duration: 5 Days What you will learn This course takes the database administrator beyond the basic

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 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

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

D78850GC10. Oracle Database 12c Backup and Recovery Workshop. Summary. Introduction. Prerequisites

D78850GC10. Oracle Database 12c Backup and Recovery Workshop. Summary. Introduction. Prerequisites D78850GC10 Oracle 12c and Recovery Workshop Summary Duration Vendor Audience 5 Days Oracle Data Warehouse Administrators, Administrators, Support Engineers, Technical Administrators, Technical Consultants

More information

Oracle Database 11g: Administration Workshop II Release 2

Oracle Database 11g: Administration Workshop II Release 2 Oracle University Contact Us: 1.800.529.0165 Oracle Database 11g: Administration Workshop II Release 2 Duration: 5 Days What you will learn This Oracle Database 11g: Administration Workshop II Release

More information

Objectif. Participant. Prérequis. Pédagogie. Oracle Database 11g - Administration Workshop II - LVC. 5 Jours [35 Heures]

Objectif. Participant. Prérequis. Pédagogie. Oracle Database 11g - Administration Workshop II - LVC. 5 Jours [35 Heures] Objectif Back up and recover a database Configure Oracle Database for optimal recovery Administer ASM disk groups Use an RMAN backup to duplicate a database Automating Tasks with the Scheduler Participant

More information

Maximize Availability With Oracle Database 12c

Maximize Availability With Oracle Database 12c Maximize Availability With Oracle Database 12c Darl Kuhn DBA darl.kuhn@oracle.com 1 Copyright 2013, Oracle and/or its affiliates. All rights reserved. HA? 2 Copyright 2013, Oracle and/or its affiliates.

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

Oracle Database 11g: Administration Workshop II

Oracle Database 11g: Administration Workshop II Oracle University Entre em contato: 0800 891 6502 Oracle Database 11g: Administration Workshop II Duração: 5 Dias Objetivos do Curso In this course, the concepts and architecture that support backup and

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

D12CBR Oracle Database 12c: Backup and Recovery Workshop NEW

D12CBR Oracle Database 12c: Backup and Recovery Workshop NEW D12CBR Oracle Database 12c: Backup and Recovery Workshop NEW What you will learn This Oracle Database 12c: Backup and Recovery Workshop will teach you how to evaluate your own recovery requirements. You'll

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

OCP: Oracle Database 12c Administrator Certified Professional Study Guide. Exam 1Z0-063

OCP: Oracle Database 12c Administrator Certified Professional Study Guide. Exam 1Z0-063 Brochure More information from http://www.researchandmarkets.com/reports/2561621/ OCP: Oracle Database 12c Administrator Certified Professional Study Guide. Exam 1Z0-063 Description: An updated guide for

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

D12C-AIU Oracle Database 12c: Admin, Install and Upgrade Accelerated NEW

D12C-AIU Oracle Database 12c: Admin, Install and Upgrade Accelerated NEW D12C-AIU Oracle Database 12c: Admin, Install and Upgrade Accelerated NEW Duration: 5 Days What you will learn This Oracle Database 12c: Admin, Install and Upgrade Accelerated course will provide you with

More information

SQL Server to Oracle A Database Migration Roadmap

SQL Server to Oracle A Database Migration Roadmap SQL Server to Oracle A Database Migration Roadmap Louis Shih Superior Court of California County of Sacramento Oracle OpenWorld 2010 San Francisco, California Agenda Introduction Institutional Background

More information

Configuring Backup Settings Configuring and Managing Persistent Settings for RMAN Configuring Autobackup of Control File Backup optimization

Configuring Backup Settings Configuring and Managing Persistent Settings for RMAN Configuring Autobackup of Control File Backup optimization Introducción Objetivos Objetivos del Curso Core Concepts and Tools of the Oracle Database The Oracle Database Architecture: Overview ASM Storage Concepts Connecting to the Database and the ASM Instance

More information

Oracle Backup & Recovery

Oracle Backup & Recovery ORACLG«Oracle Press Oracle Backup & Recovery Rama Velpuri Osborne McGraw-Hill Berkeley New York St. Louis San Francisco Auckland Bogota Hamburg London Madrid Mexico City Milan Montreal New Delhi Panama

More information

REDCENTRIC SOFTWARE ORACLE PLUG-IN FOR SOLARIS AGENT X86 VERSION 6.73.3197

REDCENTRIC SOFTWARE ORACLE PLUG-IN FOR SOLARIS AGENT X86 VERSION 6.73.3197 REDCENTRIC SOFTWARE ORACLE PLUG-IN FOR SOLARIS AGENT X86 VERSION 6.73.3197 RELEASE NOTES, AUGUST 15 TH, 2011 Software Oracle Plug-In for Solaris Agent x86 Version 6.73.3197 Release Notes, August 15th,

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 11g: New Features for Administrators DBA Release 2

Oracle Database 11g: New Features for Administrators DBA Release 2 Oracle Database 11g: New Features for Administrators DBA Release 2 Duration: 5 Days What you will learn This Oracle Database 11g: New Features for Administrators DBA Release 2 training explores new change

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

Why Not Oracle Standard Edition? A Dbvisit White Paper By Anton Els

Why Not Oracle Standard Edition? A Dbvisit White Paper By Anton Els Why Not Oracle Standard Edition? A Dbvisit White Paper By Anton Els Copyright 2011-2013 Dbvisit Software Limited. All Rights Reserved Nov 2013 Executive Summary... 3 Target Audience... 3 Introduction...

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

Many DBA s are being required to support multiple DBMS s on multiple platforms. Many IT shops today are running a combination of Oracle and DB2 which

Many DBA s are being required to support multiple DBMS s on multiple platforms. Many IT shops today are running a combination of Oracle and DB2 which Many DBA s are being required to support multiple DBMS s on multiple platforms. Many IT shops today are running a combination of Oracle and DB2 which is resulting in either having to cross train DBA s

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

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

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

SharePlex for Oracle How to replicate databases. Jeffrey Surretsky Solutions Architect

SharePlex for Oracle How to replicate databases. Jeffrey Surretsky Solutions Architect SharePlex for Oracle How to replicate databases Jeffrey Surretsky Solutions Architect Highlights Overview: reasons for migration Traditional data migration methods Drawbacks Data migrations using log-based

More information

Simplifying Online Backup Operations for Microsoft Exchange, SQL and Oracle with Hitachi Protection Manager Software

Simplifying Online Backup Operations for Microsoft Exchange, SQL and Oracle with Hitachi Protection Manager Software Simplifying Online Backup Operations for Microsoft Exchange, SQL and Oracle with Hitachi Protection Manager Software Craig Chan: Product Manager Bobby Crouch: Product Marketing Manager Hitachi Data Systems

More information

ORACLE DATABASE ADMINISTRATOR RESUME

ORACLE DATABASE ADMINISTRATOR RESUME 1 of 5 1/17/2015 1:28 PM ORACLE DATABASE ADMINISTRATOR RESUME ORACLE DBA Resumes Please note that this is a not a Job Board - We are an I.T Staffing Company and we provide candidates on a Contract basis.

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

Oracle Database 12c: New Features for Administrators

Oracle Database 12c: New Features for Administrators Oracle University Contact Us: 67 52 67 24 Oracle Database 12c: New Features for Administrators Duration: 5 Days What you will learn In the Oracle Database 12c: New Features for Administrators course, you

More information

Oracle 11g New Features - OCP Upgrade Exam

Oracle 11g New Features - OCP Upgrade Exam Oracle 11g New Features - OCP Upgrade Exam This course gives you the opportunity to learn about and practice with the new change management features and other key enhancements in Oracle Database 11g Release

More information

ORACLE DATABASE 12C: NEW FEATURES FOR ADMINISTRATORS GRADE CURRICULAR. Enterprise Manager Express home page versus Enterprise Manager Database Control

ORACLE DATABASE 12C: NEW FEATURES FOR ADMINISTRATORS GRADE CURRICULAR. Enterprise Manager Express home page versus Enterprise Manager Database Control FACULDADE DE EDUCAÇÃO SUPERIOR DO PARANÁ CURSO DE EXTENSÃO UNIVERSITÁRIA ORACLE DATABASE 12C: NEW FEATURES FOR ADMINISTRATORS GRADE CURRICULAR Enterprise Manager and Other Tools Enterprise Manager (EM)

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

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

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 Architecture, Concepts & Facilities

Oracle Architecture, Concepts & Facilities COURSE CODE: COURSE TITLE: CURRENCY: AUDIENCE: ORAACF Oracle Architecture, Concepts & Facilities 10g & 11g Database administrators, system administrators and developers PREREQUISITES: At least 1 year of

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

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

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

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

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

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

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

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

ArcSDE Configuration and Tuning Guide for Oracle. ArcGIS 8.3

ArcSDE Configuration and Tuning Guide for Oracle. ArcGIS 8.3 ArcSDE Configuration and Tuning Guide for Oracle ArcGIS 8.3 i Contents Chapter 1 Getting started 1 Tuning and configuring the Oracle instance 1 Arranging your data 2 Creating spatial data in an Oracle

More information

Oracle 10g (OCP) Certification Preparation

Oracle 10g (OCP) Certification Preparation Oracle 10g (OCP) Certification Preparation Presented by Howard Horowitz 10g, 9i, 8i hhorow6801@aol.com Howard.horowitz horowitz@adeccona.com 1 Objective Attendees will learn: Strategies for preparing for

More information

Objectif. Participant. Prérequis. Pédagogie. Oracle Database 11g - New Features for Administrators Release 2. 5 Jours [35 Heures]

Objectif. Participant. Prérequis. Pédagogie. Oracle Database 11g - New Features for Administrators Release 2. 5 Jours [35 Heures] Objectif Install Oracle Grid Infrastructure Install Oracle Database 11g Release 2 Use Oracle Restart to manage components Use Automatic Storage Management (ASM) enhancements Implement table compression

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

Using HP StoreOnce Backup systems for Oracle database backups

Using HP StoreOnce Backup systems for Oracle database backups Technical white paper Using HP StoreOnce Backup systems for Oracle database backups Table of contents Introduction 2 Technology overview 2 HP StoreOnce Backup systems key features and benefits 2 HP StoreOnce

More information

Oracle vs. SQL Server. Simon Pane & Steve Recsky First4 Database Partners Inc. September 20, 2012

Oracle vs. SQL Server. Simon Pane & Steve Recsky First4 Database Partners Inc. September 20, 2012 Oracle vs. SQL Server Simon Pane & Steve Recsky First4 Database Partners Inc. September 20, 2012 Agenda Discussions on the various advantages and disadvantages of one platform vs. the other For each topic,

More information

SnapManager for Oracle 2.2. Anand Ranganathan Product & Partner Engineer (PPE)

SnapManager for Oracle 2.2. Anand Ranganathan Product & Partner Engineer (PPE) SnapManager for Oracle 2.2 Anand Ranganathan Product & Partner Engineer (PPE) Agenda Introduction Key Features Concepts Platform & Protocol Support Installation & Configuration New in Version 2.2 Coming

More information

High Availability for Oracle 10g Using Double-Take

High Availability for Oracle 10g Using Double-Take High Availability for Oracle 10g Using Double-Take High Availability for Oracle 10g Using Double-Take Revision 1.0.0 published September 2004 Double-Take, GeoCluster and NSI are registered trademarks of

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 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