Oracle Backup and Recover 101. Osborne Press ISBN

Size: px
Start display at page:

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

Transcription

1 Oracle Backup and Recover 101 Osborne Press ISBN First Printing Personal Note from the Authors Thanks for your purchase of our book Oracle Backup & Recovery 101. In our attempt to provide the best book we could to guide you to a solid understanding of backup and recovery concepts and instructions, we painstakingly edited each chapter several times at many stages of development. Unfortunately, despite our efforts and those of the publisher, several errors made it into print. With each printing, we will identify any errors and post them in this document. If you find an error found in your copy that have not been listed in this document, please us at OracleBackupRecovery@yahoo.com. We appreciate your input. The authors, Kenny Smith & Stephan Haisley Errata Listing In this document, we identify content errors that you may have in your copy of the book. Formatting, minor typographical and presentation errors are not included in this errata listing. In many cases in this listing we are including the entire sentence, displaying the

2 current text that may be found in your book. We use a strike through font to show the words we d like to replace. We use a red color to denote the words we like to add. If a paragraph is has major changes, we show the paragraph before and the revised paragraph in full.this will make it easier for you to see how we intended the text to read in the book. Introduction Page xix - paragraph 5 By configuring database archiving of all redo log files, you can recover the database completely or to a point in time. Page xx - paragraph 1 Lastly, you ll incompletely recover the database while using an open database backup. Page xx - paragraph 6 All database transactions are logged to files. You can mine those files for the SQL commands contained within them. Page xxi - paragraph 1 LogMiner provides the means to extract the SQL commands within your log files. You can retrieve the transactional statements from the redo log files, which can then be reapplied to a database. During this chapter, you will analyze the contents of redo logs. Using the transactions statements retrieved, you ll be able to explore how to make use of the SQL by applying it to the database. Page xxi - paragraph 2 These seven chapters will also assist an old time DBA to migrate to a new skill set from the old tried-and-true user managed techniques. Most of the tasks discussed in Part Two can be accomplished quickly and easily by RMAN. Therefore, you can easily

3 contrast how you perform a specific task via user-managed method with the equivalent server-managed method. Chapter 1 Page 7 - paragraph 6 This way, the picture looks as it did before Sid accessed changed the picture frame. Page 12 - paragraph 7 (This paragraph belongs outside the gray box). After being introduced to Sid s family house, you can see that he has structures for all family procedures. Like this family operation, an Oracle database has places, processes, and procedures. With this family analogy in mind, I ll now briefly describe Oracle database structures, processes, and operations that pertain to Oracle Backup and Recovery. Maybe you ll recognize some similarities to Sid s family. Page 13 - paragraph 3 This area of memory that is allocated when the instance is started and is split up into three main sections: Page 15 - paragraph 1 It represents a consistent committed version of the database Page 17 - paragraph 4 They are called online because they must be online and available for the database to use.

4 Page 18 - paragraph 2 Change the note to Nologging and Redo You can turn off the logging of data block changes for certain operations by setting the NOLOGGING attribute for a table, partition, index, or tablespace. Normal SQL will create redo on a NOLOGGING object. Operations that will not create normal redo for changes include: - Direct load using SQL*Loader - Direct-load INSERT - CREATE TABLE... AS SELECT - CREATE INDEX - ALTER TABLE... MOVE or SPLIT PARTITION - ALTER INDEX... SPLIT or REBUILD PARTITION - ALTER INDEX... REBUILD These operations still generate redo records, but they are classed as 'invalidation records' and are very small compared to standard data block redo records. Because redo is not being generated from these data changes, the blocks affected must be invalidated should redo be applied to them. This means that once a NOLOGGING operation has been performed on objects, particularly tables, a fresh backup must be made of the datafiles containing them. If this is not done and an old backup is restored with the invalidation redo records being applied to the database, the next time you try and access the object you will get block corruption errors. When you prevent normal redo from being written, you trade better performance for data recoverability. Page Bullets Change the order of these bullets and add some text. Creates operation codes and data required to undo the block change into an undo segment (rollback segment). This also creates redo vectors before making the undo segment block changes. Records the redo records to the redo log buffer.

5 Page 25 Gray box Replace the gray box with this text. (s)the Life of a Database Transaction A user named Jim changes his home phone in the Employee Application from to He makes his change via a form in a browser. What happens to his phone number information? Say the employee table has a column named phone and the employee table is in a tablespace named Users. The Users tablespace is made up of a file named user.dbf. When Jim submits his change, the block containing his employee row is fetched from datafile user.dbf and read into the buffer cache. Before the changed phone number is placed in the data block in memory, a redo record gets written to log buffer. The redo record notes the block change from the old state to the new state. Next, undo information gets written to a rollback segment named RBS (in case Jim changes his mind and so other users can see his old phone number until he commits his change). After the redo and the undo is created, the data block containing Jim's row is changed. When Jim commits his change, a commit record is written to the log buffer. The log buffer is then flushed to the current online redo log. The undo blocks in the rollback segment are also freed. While Jim clicks on his sports web page to check the scores, the online redo log fills up. The database begins writing to the next empty redo log. If the data block containing Jim's phone number change has not been written out to disk due to lack of space in the buffer cache it will be written out during the checkpoint. The archiver begins to copy the online redo log containing Jim s transaction details. Once the archiver is finished, Jim s new phone number exists in two locations a database block in a file called user.dbf and in an archive log file in the archive destination. Page 27 Bottom bullets CKPT updates the control files and datafile headers with checkpoint details. The checkpoint gets logged in the alert log file.

6 Page 28 paragraph 1 When the database is shut down, various tasks occur depending on the shutdown method: Page 29 paragraph 1 Log switch Logan switches notebooks to hold picture negatives. An Oracle database stops writing to an online redo log file and begins writing to another. Chapter 2 Page 40 paragraph 2 This must be done because after an incomplete recovery, you do not need any of the redo after this time. Page 41 paragraph 1 production database or the tablespaces Page 46 paragraph 6 possibly use extra recovery Page 52 Question 4 The correct answer is only D. The A should be removed. Chapter 3 Page 55 Paragraph 5 During this chapter, you will install Oracle software, create two databases,. Page 60 Task 2 This Java program is named the Oracle Universal Installer. 1. Install Oracle Enterprise Version Your software version option may have different numbers in the last two digits, but make sure the first three digits are

7 2. For a Linux install, enter /app/oracle/product/8.1.7 in the Path field for the ORACLE_HOME directory. 3. For a Windows NT in the Oracle Home Name field, type 817. In the Path field, type D:\app\oracle\product\ Oracle on Windows NT has named Oracle Homes; Linux does not. Page 64 Task 1 LINUX> $ORACLE_HOME/bin/dbassist & WINNT> %ORACLE_HOME%\bin\launch.exe %ORACLE_HOME%\assistants\dbca DBAssist.cl Page 67 Exercise 3.3 The amount of total time is 55. (Not 50) Page 77 Middle of page SQL> execute DBMS_JOB.INTERVAL (1,null,null,'sysdate+1'); --Every day SQL> execute DBMS_JOB.INTERVAL (1,null,null,'sysdate+1/24'); --Every Hour SQL> execute DBMS_JOB.INTERVAL (1,null,null,'sysdate+1/(24*60)'); --Every Minute Chapter 4 Page 86 Figure 4-1 Backups in this chapter exercises will be written to /oradata/practice/backup/ch04. Page 88 Exercise 4.1: Task 1 Change the SQL statement from the tina.date_log table: SELECT TO_DATE TO_CHAR(max(create_date),...) Page 89 Closed Backup script Change line 18 of the script (add the ampersand): 18. &fil

8 Page 103 Exercise 4.4: Task 1 Change the SQL statement from the tina.date_log table: SELECT TO_DATE TO_CHAR(max(create_date),...) Page 107 paragraph 1 For cancel-based recovery in this exercise, you have to manually apply the log file names and then type CANCEL when you reach the log file that was current at the time of the tablespace drop. (Remove the apostrophe after CANCEL). Chapter 5 Throughout the chapter, change all references from directory /oradata/practice/backup/ch5 to /oradata/practice/backup/ch05. Page Figure 5-1 Change Tools0.1 to tools01. Change user.01 to users01. All exercises in this chapter create backups in the /oradata/practice/backup/ch05 directory. Page Second Bullet All subsequent changes to the same block create normal redo change vectors while the block still remains in the buffer cache. Page 119 Open Backup Script Change the line of the script that creates a backup of the control file to: prompt alter database backup controlfile to '&dir./control.ctl' REUSE;; Page Paragraph 2 The recover command determined that the redo needed for the recovery begins in archive file sequence from 221 to 51.

9 Page Task Table 5. Recover database to a point in time Page Last Code listing SQL> INSERT INTO tina.date_log VALUES (sysdate+(365*5)); SQL> COMMIT; Page Last Task heading Recover Database to Point in Time Page paragraph 4 Start Cancel-based recovery. Page paragraph 2 During database startup and shutdown, you may have some problems. Page paragraph 6 During database shutdown startup, you may get an error. Page answer 5 5. C. When you issue the ALTER TABLESPACE TOOLS BEGIN BACKUP command, the TOOLS tablespace undergoes a checkpoint. All changes for the files in that tablespace get recorded as block images to the redo files. Page gray box 2. The user running this command must be granted the OSDBA SYSDBA role. Page paragraph 4 This file will be located in the location directory defined by the user_dump_dest initialization parameter.

10 Page last paragraph On a startup NOMOUNT, you only read the init.ora file and establish the memory structures and background processes required by Oracle. Page first paragraph Both the online redo logs and the archived redo logs from the original database can no longer be used for this database once you reset the logs to include your new database name. Page Gray box - last sentence For extra credit, vary the file names, directories, and order. Note that once you get your database open, the file number from the v$datafile dictionary view is the same in the copied database as it is in original database. (I m not recommending you change the datafile order, but you can try this to help you understand the duplication process better.) Page First paragraph When you clone a database, you may (and probably will) run into various problems along the way. Usually, those problems show up in an error message during a task in the project. Page paragraph 2 The CLNE database may need redo in the current PRACTICE database archive online log. Chapter 6 Throughout the chapter, change all occurrences of the database and directory from STANDBY to STBY. Chapter 7 Page Task listing Remove task 3. The standby control file is made when the backup is taken.

11 Chapter 8 Page Bullet Full database mode The import parameter defining user database mode is FULL=Y. Page First paragraph Two parameters that create output and do not change the database are SHOW and INDEXFILE. Page Point 2 The text definitions in the log files have been wrapped within words double-quotes. Page paragraph 5 Create an export with three tables of Tina s table using a parameter file as shown in this example: Chapter 9 Page last bullet Any database files required for tablespace recovery. In this chapter, the auxiliary set is the primary PRACTICE database backup control file, backup datafiles of the SYSTEM, RBS and TEMP and RBS tablespaces, the auxiliary database parameter file and the primary PRACTICE database archived log files. Page first paragraph You will recover this table using TSPITR. Before you drop the table, first create rebuild an index on the employee table in the INDX tablespace. Page last paragraph Because any data changes made to objects in the USERS tablespace after TSPITR the drop table command will not be recovered, the support department will not be found in the department table.

12 Page Last paragraph By doing this, you avoid the risk of corrupting the primary database instance by writing over the control files, datafiles or online redo logs. Page first paragraph Then, you will recover the recovery set datafiles to prepare them for Export/Import transporting back into the PRACTICE database. Page first paragraph in Task 3 When you drop the tables tablespace including contents, the objects contained within it are removed from the data dictionary. Page Second Listing SQL> EXECUTE dbms_logmnr.add_logfile( - 2 logfilename => 'd:\oradata\practice\archive\100.arc', - 2 logfilename => '/oradata/practice/archive/100.arc', - 3 options => dbms_logmnr.removefile); Page First Paragraph You can see that someone logged in as user SCOTT and performed this update. You also know the culprit was logged on to a machine named SJCOMP as an operating system user named SJONES. Page LogMiner Once your investigation of the redo logs is completed, run the END_LOGMNR procedure of the DBMS_LOGMNR package. Page Summary Occasional analysis of the online redo log files can help you find out when table data is changed or perform capacity analysis on your Oracle database. LogMiner serves is a handy means to look at the contents of Oracle 8, 8i or 9i database redo logs.

13 Chapter 11 Page Figure 11-1 Remove the Channels line between the target database and Recovery Manager executable. Page Bullet Automated backup, restoration, and recovery RMAN reads the control file each time the database is backed up to make sure the correct structural contents (tablespaces, datafiles, control files, and archive log files) are backed up. Page Gray box After each backup, the second catalog also needs to be resynced to ensure that it contains the newly created backup information. Page Third bullet The alert log file on the target and the catalog database may contain helpful information for troubleshooting the MML. Chapter 12 Page First paragraph Second, let s talk about items that involve the destination of the backup set. Page First paragraph A full whole database backup will therefore include the current control file. Page Figure 12-1 The last Sunday Level 0 backup should be number 127 instead of 120. The same mistake is made in figure Page both Points named Finally Finally All the redo generated since the time of the Saturday backup will be applied.

14 Page First Paragraph In this task, you ll back up the database while it is open. The script in Listing 12-3 is the same as the script is in task 1 with one exception: the database is open instead of closed. This script demonstrates how easy this is. Page First Bullet including current controlfile in backupset The current control file is copied with the system tablespace datafile. This message line comes right after the system datafile copy backup. Page Second bullet Line 2 The database control files must be mounted to run any RMAN backup commands. Why? All database schema structural information is stored in the target control files. Page paragraph 4 These files must be protected to be absolutely sure that you can recover your database to a point in time in the past or to the current time. Page last paragraph When you run b_archive_delete.rcv, the DELETE INPUT qualifier instructs RMAN to delete the archive log files that have been backed up after they have been successfully Page question 1 What RMAN command creates a copy of used database file blocks? Chapter 13 Page paragraph 1 Throughout this chapter, you ll see many RMAN commands applied toward checking and maintaining cataloged backups of the PRACTICE database,

15 Page Last paragraph Not only can you perform a validation of a specific backup set, but you can also simulate a restore of the database or portions of a database using the Validate option on the RESTORE command. Finally, RMAN can validate that a recovery can be made to a previous point in time using an UNTIL parameter to set the desired stop point of recovery. Page 335 Thursday bullet Thursday Cumulative incremental level1 backup with tag THU_LEVEL1. Page Backup Archive Logs Open a SQL*Plus session as the catalog owner and run queries like you ve done in previous tasks (select from V$BACKUP_REDOLOG and RC_BACKUP_REDOLOG instead). Page Question 2 2. Which recovery catalog view shows backup sets made by RMAN? Chapter 14 No known errors. Chapter 15 Page First bullet For example, if you have the init.ora parameter CONTROL_FILE_RECORD_KEEP_TIME set to 21 days, you may not be able to restore from a backup taken two months ago. Page Figure 15-1 The arrows should not include exercise references.

16 Page paragraph 3 If, during all the output from the duplicate command script, you do not encounter an error script and you see the RMAN-06400: database opened message, the RMAN database duplication operation was a success! Page Last code listing SQL> CONNECT sys/practice@clne Page Paragraph 2 Create your backup duplicate database with the script shown in Listing Be sure to shut down the CLNE database and open the instance without mounting it prior to running this duplication script. Chapter 16 Page Dorecover Bullet DORECOVER Recovers the standby database using incremental datafile and archive log backups. Page Third Bullet You must have a backup, that includes a standby control file. Page Item 6 If tape backups are used, the standby server must have access to the Media Management Layer and tape library that the primary database uses to makes its backups. Page First bullet RMAN can store that special file in a datafile backup piece. This backup control file can also be used to restore the target database control file if needed. Page First paragraph This duplicate, however, is configured to be a STBY standby of the PRACTICE database.

17 Page Item 4 The backup containing the standby control file was performed within the current online redo log file. Redo information about the standby control file is contained in the current online redo log file. Make sure hat you ve switched log files so that RMAN can access redo information current when the standby control file was created. RMAN will read the archive log file. Page Table titles Change the word Duplication to Standby. Issue the duplicate database command while connect to the target, catalog and auxiliary. The standby control file is automatically by RMAN during standby creation. Chapter 17 Page Fifth Bullet Remove the bullet item. Check that data in other tablespaces contains data that was changed after the recovery time of the users tablespace. Page Server-Managed TSPITR column Performs automatic incomplete recovery and opens with RESETLOGS.

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

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

More information

Database 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

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

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

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

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

11. Oracle Recovery Manager Overview and Configuration.

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

More information

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

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

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

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

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

Oracle 11g DBA Training Course Content

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

More information

Oracle 11g Database Administration

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

More information

Recover Oracle Database upon losing all Control Files

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

More information

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

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

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

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

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

More information

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

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

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

More information

Oracle 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

Backup and Recovery. Oracle RMAN 11 g. Oracle Press ORACLG. Matthew Hart. Robert G. Freeman. Mc Graw Hill. Lisbon London Madrid Mexico City Milan

Backup and Recovery. Oracle RMAN 11 g. Oracle Press ORACLG. Matthew Hart. Robert G. Freeman. Mc Graw Hill. Lisbon London Madrid Mexico City Milan ORACLG Oracle Press Oracle 11 g Backup and Recovery Robert G. Freeman Matthew Hart Mc Graw Hill New York Chicago San Francisco Lisbon London Madrid Mexico City Milan New Delhi San Juan Seoul Singapore

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

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

AV-004: Administering and Programming with ORACLE

AV-004: Administering and Programming with ORACLE AV-004: Administering and Programming with ORACLE Oracle 11g Duration: 140 hours Introduction: An Oracle database is a collection of data treated as a unit. The purpose of a database is to store and retrieve

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

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

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

Configuring and Integrating Oracle

Configuring and Integrating Oracle Configuring and Integrating Oracle The Basics of Oracle 3 Configuring SAM to Monitor an Oracle Database Server 4 This document includes basic information about Oracle and its role with SolarWinds SAM Adding

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

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

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

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

More information

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

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

TECHNICAL REPORT. Nimble Storage Oracle Backup and Recovery Guide

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

More information

Oracle Database Cross Platform Migration Lucy Feng, DBAK

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

More information

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

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

UNIVERSITY AUTHORISED EDUCATION PARTNER (WDP)

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

More information

Oracle 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

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

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

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

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

Oracle9i Database: Advanced Backup and Recovery Using RMAN

Oracle9i Database: Advanced Backup and Recovery Using RMAN Oracle9i Database: Advanced Backup and Recovery Using RMAN Student Guide D16507GC10 Production 1.0 March 2003 D37796 Author Jim Womack Technical Contributors and Reviewers Matthew Arrocha Tammy Bednar

More information

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

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

More information

Oracle 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

Oracle Recovery Manager 1 sur 6 05/08/2014 14:17 ORACLE.COM TECHNOLOGY NETWORK PARTNERS STORE SUPPORT (Sign In / Register for a free DownloadsDocumentation Discussion Forums Articles Sample Code Training RSS Resources For PRODUCT

More information

HP LeftHand SAN Solutions

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

More information

11. Configuring the Database Archiving Mode.

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

More information

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

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

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

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

System Administration of Windchill 10.2

System Administration of Windchill 10.2 System Administration of Windchill 10.2 Overview Course Code Course Length TRN-4340-T 3 Days In this course, you will gain an understanding of how to perform routine Windchill system administration tasks,

More information

High Availability for Oracle 8 Using Double-Take

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

More information

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

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

More information

Recreate Physical Standby Database after Recovery of Primary Database

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

More information

ORACLE 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

Zero Downtime Backup solution for Oracle10g

Zero Downtime Backup solution for Oracle10g Storage Grid Seminar Oktober 2005 Frankfurt, München, Hamburg Zero Downtime Backup solution for Oracle10g Jaime Blasco HP/Oracle CTC (Cooperative Technology Center) EMEA Competence Center 2004 Hewlett-Packard

More information

Oracle Database Security and Audit

Oracle Database Security and Audit Copyright 2014, Oracle Database Security and Beyond Checklists Learning objectives Understand data flow through an Oracle database instance Copyright 2014, Why is data flow important? Data is not static

More information

Enterprise DBA Part 1B: Backup and Recovery Workshop

Enterprise DBA Part 1B: Backup and Recovery Workshop Enterprise DBA Part 1B: Backup and Recovery Workshop... Volume 1 Student Guide 30050GC10 Production 1.0 August 1999 M09095 Authors Dominique Jeunot Shankar Raman Technical Contributors and Reviewers David

More information

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC MyOra 3.0 SQL Tool for Oracle User Guide Jayam Systems, LLC Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL

More information

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

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

More information

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

Backing up a Large Oracle Database with EMC NetWorker and EMC Business Continuity Solutions

Backing up a Large Oracle Database with EMC NetWorker and EMC Business Continuity Solutions Backing up a Large Oracle Database with EMC NetWorker and EMC Business Continuity Solutions EMC Proven Professional Knowledge Sharing June, 2007 Maciej Mianowski Regional Software Specialist EMC Corporation

More information

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

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

More information

Oracle Database 11 g Performance Tuning. Recipes. Sam R. Alapati Darl Kuhn Bill Padfield. Apress*

Oracle Database 11 g Performance Tuning. Recipes. Sam R. Alapati Darl Kuhn Bill Padfield. Apress* Oracle Database 11 g Performance Tuning Recipes Sam R. Alapati Darl Kuhn Bill Padfield Apress* Contents About the Authors About the Technical Reviewer Acknowledgments xvi xvii xviii Chapter 1: Optimizing

More information

RMAN in the Trenches: To Go Forward, We Must Backup

RMAN in the Trenches: To Go Forward, We Must Backup RMAN in the Trenches: To Go Forward, We Must Backup By Philip Rice In the process of implementing Recovery Manager (RMAN) over a period of several years, I had many questions, and some were not easy to

More information

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

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

More information

Oracle Database Backup & Recovery, Flashback* Whatever, & Data Guard

Oracle Database Backup & Recovery, Flashback* Whatever, & Data Guard 18 th Annual International zseries Oracle SIG Conference Present: Oracle Database Backup & Recovery, Flashback* Whatever, & Data Guard Tammy Bednar Tammy.Bednar@oracle.com Manager, HA Solutions & Backup

More information

High Availability for Oracle 9i Using Double-Take

High Availability for Oracle 9i Using Double-Take High Availability for Oracle 9i Using Double-Take High Availability for Oracle 9i Using Double-Take published November 2002 NSI and Double-Take are registered trademarks of Network Specialists, Inc. All

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

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 11g: Administration Workshop I Release 2

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

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

Feature. Database Backup and Recovery Best Practices

Feature. Database Backup and Recovery Best Practices Feature Ali Navid Akhtar, OCP, has more than two decades of experience with databases. He works as a lead database administrator at Solo Cup Co. Jeff Buchholtz has more than 18 years of design, implementation

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

Oracle Database 11g: Administration Workshop I Release 2

Oracle Database 11g: Administration Workshop I Release 2 Oracle University Contact Us: (+202) 35 35 02 54 Oracle Database 11g: Administration Workshop I Release 2 Duration: 5 Days What you will learn This course is designed to give you a firm foundation in basic

More information

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

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

More information

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

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

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

More information

Backing Up Oracle Databases with Handy Backup

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

More information

VERITAS NetBackup 6.0 for Oracle

VERITAS NetBackup 6.0 for Oracle VERITAS NetBackup 6.0 for Oracle System Administrator s Guide for UNIX and Linux N15262B September 2005 Disclaimer The information contained in this publication is subject to change without notice. VERITAS

More information

DBMaster. Backup Restore User's Guide P-E5002-Backup/Restore user s Guide Version: 02.00

DBMaster. Backup Restore User's Guide P-E5002-Backup/Restore user s Guide Version: 02.00 DBMaster Backup Restore User's Guide P-E5002-Backup/Restore user s Guide Version: 02.00 Document No: 43/DBM43-T02232006-01-BARG Author: DBMaster Production Team, Syscom Computer Engineering CO. Publication

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

Oracle Architecture. Overview

Oracle Architecture. Overview Oracle Architecture Overview The Oracle Server Oracle ser ver Instance Architecture Instance SGA Shared pool Database Cache Redo Log Library Cache Data Dictionary Cache DBWR LGWR SMON PMON ARCn RECO CKPT

More information

Cross Platform Transportable Tablespaces Migration in Oracle 11g

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

More information

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

MapGuide Open Source Repository Management Back up, restore, and recover your resource repository.

MapGuide Open Source Repository Management Back up, restore, and recover your resource repository. MapGuide Open Source Repository Management Back up, restore, and recover your resource repository. Page 1 of 5 Table of Contents 1. Introduction...3 2. Supporting Utility...3 3. Backup...4 3.1 Offline

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