You'll even like your Data Guard more with Flashback

Size: px
Start display at page:

Download "You'll even like your Data Guard more with Flashback"

Transcription

1 You'll even like your Data Guard more with Flashback Hervé Schweitzer Mathias Zarick München, Baden Basel Bern Brugg Lausanne Zürich Düsseldorf Frankfurt/M. Freiburg i. Br. Hamburg München Stuttgart Wien

2 Agenda History of Standby Databases Flashback Database Flashback enhances Data Guard Environment Data are always part of the game. Rolling Upgrade with Transient Logical Standby Database 2

3 Standby Databases: A short history Oracle 7.3: Creating and mounting a standby database Oracle 8i: Automated archived redo log transport and application, TAF, open read-only of standby database Oracle 9i: Data Guard and Data Guard Broker with switchover, close log gap, delayed redo application, GUI and no-data-loss setups (sync transport) Oracle 10g: Simplified syntax, RAC support, partial failover cluster support, reuse of old primary as new standby database, automatic standby activation Oracle 11g: Active Data Guard (readonly open and log-apply), Lost-write detection, snapshot standby, automatic standby activation in MaxPerformance mode 3

4 11gR2 Data Guard New Features Automatic Repair of corrupted blocks with the help of a physical standby database or in a physical standby database Redo transport compression now also supports SYNC setups Configurable Real-Time Query Apply Lag Limit per session: STANDBY_MAX_DATA_DELAY = NONE n Flushing any unsent redo to standby in mount state SQL> ALTER SYSTEM FLUSH REDO TO 'PHYS_SITE1'; System altered. LogMiner (Logical Standby) supports table compression (OLTP and BASIC) and SecureFile LOBs Up to 30 standby databases 4

5 Agenda History of Standby Databases Flashback Database Flashback enhances Data Guard Environment Comprehensive consultancy is the through ball to your performance. Rolling Upgrade with Transient Logical Standby Database 5

6 Flashback in Oracle Database Three completely independent, different mechanisms exist Only Flashback database is especially relevant in a Data Guard environment Mechanism Undo segments Rename table statements Since Oracle 10g: flashback logs Flashback Type DBMS_FLASHBACK Flashback query Flashback table Recycle bin Flashback table x to before drop Flashback database 6

7 With Flashback you can Rewind your Database!"#!"# $ 7

8 Concept of Flashback Database New type of log files: Flashback Logs Contain before images of data blocks New background process RVWR Writes Flashback data (asynchronous to checkpoints, DBWR, etc.) (' (' (' (' $' $' $' $' %&' %&' %&' %&' Rewind resp. Rollback Logical data corruptions User errors Depending on DB size, significantly faster than conventional recovery Restore is not required!!"#* )* It often eliminates the need for delayed redo application, but it consumes more resources (sometimes not acceptable) Caution: Flashback is not guaranteed, DelayMins is guaranteed! 8

9 The Flash Recovery Area Automatically created directory structure /u02/flash_recovery_area PHYS_SITE1 +!"# archivelog autobackup backupset controlfile datafile o1_mf_07bv7sbk_.flb o1_mf_078ez34h_.flb o1_mf_1_5839_00q8o099_.arc o1_mf_1_5840_00qbojfg_.arc o1_mf_s_ _00q8vspj_.bkp o1_mf_s_ _00qlnpn9_.bkp o1_mf_annnn_tag t100512_00q7zc9j_.bkp o1_mf_ncnnf_tag t102920_00q8vmff_.bkp... o1_mf_tag t095756_00q72lc2_.ctl o1_mf_sysaux_00q70otw_.dbf o1_mf_system_00q72yyp_.dbf o1_mf_undotbs_00q71o05_.dbf... 9

10 Configuration of Flashback Database must be running in archive log mode 1. Configuration of Flashback Recovery Area DB_RECOVERY_FILE_DEST_SIZE SQL> ALTER SYSTEM SET DB_RECOVERY_FILE_DEST_SIZE=2048M; DB_RECOVERY_FILE_DEST SQL> ALTER SYSTEM SET DB_RECOVERY_FILE_DEST='/u02/flashback_recovery_area'; 2. Activating Flashback (database must be mounted, not open) SQL> ALTER DATABASE FLASHBACK ON; 3. Define retention target (time in minutes) SQL> ALTER SYSTEM SET DB_FLASHBACK_RETENTION_TARGET=1440; (default) 10

11 Dictionary Views relevant to Flashback Database V$DATABASE SQL> select current_scn, flashback_on from v$database; CURRENT_SCN FLASHBACK_ON YES V$FLASHBACK_DATABASE_LOG Important for size estimation SQL> select oldest_flashback_scn old_flash_scn, to_char(oldest_flashback_time,'dd-mon-yyyy HH24:MI:SS') old_flash_time, retention_target ret, flashback_size flash_size, estimated_flashback_size est_flash_size from v$flashback_database_log OLD_FLASH_SCN OLD_FLASH_TIME RET FLASH_SIZE EST_FLASH_SIZE JUL :20:

12 I/O Monitoring V$FLASHBACK_DATABASE_STAT SQL> select to_char(begin_time,'dd-mon-yyyy HH24:MI:SS') begin_time, to_char(end_time,'dd-mon-yyyy HH24:MI:SS') end_time, flashback_data flash_data, db_data, redo_data, estimated_flashback_size est_flash_size from v$flashback_database_stat BEGIN_TIME END_TIME FLASH_DATA DB_DATA REDO_DATA EST_FLASH_SIZE JUL :50:38 16-JUL :52: JUL :50:37 16-JUL :50: JUL :50:36 16-JUL :50: JUL :50:35 16-JUL :50:

13 Rewind the Database: Usage of Flashback SQL*PLUS and RMAN Commands and functionality are identical But: Better perform open resetlogs only in RMAN RMAN is recommended RMAN knows all about backups (e.g. Archive Log) that could be required for a successful Flashback operation rman target / RMAN> SHUTDOWN IMMEDIATE; RMAN> STARTUP MOUNT; RMAN> FLASHBACK DATABASE TO [SCN SEQUENCE TIME RESTORE_POINT ]; RMAN> SQL "ALTER DATABASE OPEN READ ONLY"; rman target / RMAN> SHUTDOWN IMMEDIATE; RMAN> STARTUP MOUNT; RMAN> FLASHBACK DATABASE TO [SCN SEQUENCE TIME RESTORE_POINT ]; RMAN> ALTER DATABASE OPEN RESETLOGS; 13

14 Agenda History of Standby Databases Flashback Database Flashback enhances Data Guard Environment Decisions have effects. Jump. Rolling Upgrade with Transient Logical Standby Database 14

15 Flashback and Data Guard: Learning by examples Did you ever truncate the wrong table? Did you ever need to recreate a standby (2.5 TByte ) after a primary database PITR? Did you ever need to recreate a standby after activating one? Did you ever need to clone a database for a little application or Oracle patch test? 15

16 Recreation of data with Flashback of Standby (1) SQL> truncate table,- prior to 10g Tablespace PITR Database PITR Activate standby database or open read-only/exp/imp (if delay) as of 10g 1. Flashback standby database (if no delay in redo apply) 2. Open read-only 3. Export table 4. Import on primary database 16

17 Recreation of data with Flashback of Standby (2) &01,- 2$1 31 ' %" &01,- &01,- /"), -,"), " 31 ' &#4!5,/ )4)** )-" +!"#,).,"), 2$1 31 ' %" 17

18 Recreation of data with Flashback of Standby (3) PRIMARY STANDBY TRUNCATE TABLE EMP; DISABLE DATABASE 'PHYS_SITE2'; SHUTDOWN IMMEDIATE STARTUP MOUNT FLASHBACK STANDBY DATABASE TO SCN scn; ALTER DATABASE OPEN READ ONLY; exp scott/blue tables=emp \ file=exp_from_standby.dmp SHUTDOWN IMMEDIATE STARTUP MOUNT imp scott/blue \ file=exp_from_standby.dmp ENABLE DATABASE 'PHYS_SITE2'; &#4!5,/ )4)** 18

19 PITR of Primary without Recreating Standby (1) 7 *) )) 82 6,- prior to 10g PITR ( open resetlogs) either recreate the standby database with server managed backup (rman) or user managed backup (cp/copy) as of 10g Flashback primary database Depending on the current redo apply state 1. Too short or no delay also Flashback standby database 2. PITR Resetlogs SCN not yet applied no action (recovery through resetlogs is supported) 19

20 PITR of Primary without Recreating Standby (2) &01,- 31 ' &01,- +!"#,* " &01,- 31 ' )-" +!"# 2$1 31 ' %" &#4!5,/ )4)** 20

21 PITR of Primary without Recreating Standby (3) PRIMARY SELECT current_scn FROM V$DATABASE; UPDATE hr.employees SET SALARY=1; ALTER SYSTEM SWITCH LOGFILE; SHUTDOWN IMMEDIATE STARTUP MOUNT EXCLUSIVE FLASHBACK DATABASE TO SCN scn; STANDBY ALTER DATABASE OPEN RESETLOGS; SELECT resetlogs_change#-2 FROM V$DATABASE; DISABLE DATABASE 'PHYS_SITE2'; SHUTDOWN IMMEDIATE; STARTUP MOUNT; FLASHBACK STANDBY DATABASE TO SCN scn; ENABLE DATABASE 'PHYS_SITE2'; &#4!5,/ )4)** 21

22 Concept of Database Reinstate (1) %8- + %8- %" %",- '!"/!+,- 6 - prior to 10g backup of the new primary database duplicate with backup recreate standby database as of 10g reinstate database (only with manual intervention after failover immediate ) 22

23 Concept of Database Reinstate (2) &01,- %8- %8- %" %" &01 + %8-,- %" 2$1 31 ' %" FAILOVER TO 'PHYS_SITE2' 2$1 31 ',- %" REINSTATE DATABASE 'PHYS_SITE1' &01 2$1 31 ',- %" &#4!5,/ )4)** 23

24 Test application patch install on Standby (1) 6 9,,8! prior to 10g backup of the primary DB or clone the database with 10g open standby database temporarily (read/write) for testing purposes Flashback standby database to state before open (read/write) 24

25 Test application patch install on Standby (2) Prerequisites Data Guard configuration ready (SUCCESS) and enough space in the flashback area for the guaranteed restore point (db_recovery_file_dest(_size) must be defined) No use of Data Guard Broker commands, directly in sqlplus Attention: Perform only with a second standby database, otherwise no disaster protection (activation stops redo-transfer (ORA-16009)) Guarantee that normal clients cannot connect to the temporarily opened standby 25

26 Test application patch install on Standby (3),4,!- --+-* ),-* )7 - +!"#,!- )-" */),- ),,- ",!- &#4!5,/ )4)** 26

27 Test application patch install on Standby (4) PRIMARY STANDBY EDIT DATABASE 'PHYS_SITE2' SET STATE='LOG-APPLY-OFF'; DISABLE DATABASE 'PHYS_SITE2'; CREATE RESTORE POINT before_patch GUARANTEE FLASHBACK DATABASE; ALTER DATABASE ACTIVATE STANDBY DATABASE; SHUTDOWN IMMEDIATE STARTUP MOUNT ALTER DATABASE SET STANDBY DATABASE TO MAXIMIZE PERFORMANCE; ALTER DATABASE OPEN; : #,,--,!!-) &#4!5,/ )4)** 27

28 Test application patch install on Standby (5) PRIMARY STANDBY SHUTDOWN IMMEDIATE STARTUP MOUNT FLASHBACK DATABASE TO RESTORE POINT before_patch; ALTER DATABASE CONVERT TO PHYSICAL STANDBY; SHUTDOWN IMMEDIATE STARTUP MOUNT DROP RESTORE POINT before_patch; ENABLE DATABASE 'PHYS_SITE2'; EDIT DATABASE 'PHYS_SITE2' SET STATE='ONLINE'; &#4!5,/ )4)** 28

29 Snapshot Standby Database with 11g Temporarily convert a physical standby to a normal database DGMGRL> convert database 'PHYS_SITE2' to snapshot standby; Converting database "PHYS_SITE2" to a Snapshot Standby database, please wait... Database "PHYS_SITE2" converted successfully Now, do your tests on the standby site Afterwards, convert again back to physical standby DGMGRL> convert database 'PHYS_SITE2' to physical standby; Converting database "PHYS_SITE2" to a Physical Standby database, please wait... Operation requires shutdown of instance "PHYS" on database "PHYS_SITE2"... Operation requires startup of instance "PHYS" on database "PHYS_SITE2"... Continuing to convert database "PHYS_SITE2"... Operation requires shutdown of instance "PHYS" on database "PHYS_SITE2"... Operation requires startup of instance "PHYS" on database "PHYS_SITE2"... Database "PHYS_SITE2" converted successfully Compared to manual solution of 10g, redo transfer is not stopped during snapshot period 29

30 Snapshot Standby Database with 11g Configuration DGMGRL> show configuration Configuration Name: PHYS Enabled: YES Protection Mode: MaxAvailability Databases: PHYS_SITE1 - Primary database PHYS_SITE2 - Snapshot standby database PHYS_SITE3 - Physical standby database V$DATABASE View SQL> select open_mode, database_role from v$database; OPEN_MODE DATABASE_ROLE READ WRITE SNAPSHOT STANDBY Fast-Start Failover: DISABLED Current status for "PHYS": SUCCESS 30

31 Test Application Patch Install on Standby 11g / 10g )7 -,!,!- --+-* ),-* )7 -,!- +!"#,!-,!- " ),,- )-" */),-,! &#4!5,/ )4)**

32 Agenda History of Standby Databases Flashback Database Flashback enhances Data Guard Environment Our experience and service competence form the basis of your success. Rolling Upgrade with Transient Logical Standby Database 32

33 Rolling Upgrade Starting with Oracle 10g Release 1 ( ), you can use a Logical Standby database with SQL Apply to perform a Rolling Upgrade of your Oracle Software and Database With Rolling Upgrade you can patch your database with a very short downtime (only the time to make a Switchover) Rolling Upgrade is also available for unsupported object types. However it needs more attention and no changes are possible on unsupported objects during the upgrade During a rolling upgrade (mixed mode state), you can perform tests on the standby database and if necessary abort the Rolling Upgrade procedure 33

34 Rolling Upgrade - Concept ;9,, <<<= 8-! "# $# <<<= 8- <<<= * ;// <<< %" ; 9,, 8- <<<= <<< <<<= <<< 34

35 Rolling Upgrade - Requirements Rolling Upgrade is only available for patch or release (major release, patch set, etc..) validated with Rolling Upgrade support Rolling Upgrade does not support an Oracle Data Guard broker configuration The LOG_ARCHIVE_DEST_n parameter for the logical standby database must be set to OPTIONAL to ensure that the primary database can proceed during upgrade of the standby database The COMPATIBLE parameter must have the same value on both databases The Data Guard protection mode must be set to MAXIMUM PERFORMANCE or MAXIMUM AVAILABILITY 35

36 Rolling Upgrade with Physical Standby Sounds better than it is... Rolling Upgrade with Transient Logical Standby You still need a Logical Standby database with all it s limitations What is different? The Logical Standby keeps the DBID We have 2 DIFFERENT databases with the SAME DBID SQL> alter database recover logical standby keep identity; keep identity is a 11g feature, it does not work for upgrade 10.x 11.1 For Upgrades from 10g use manual steps described in MAA White Paper Database Rolling Upgrade Using Transient Logical Standby Oracle Database 10g Release 2 36

37 Rolling Upgrade with Transient Logical Standby 11g Create a Data Guard Configuration without Broker create restore point pre_upgrade guarantee flashback database; Primary Phys. Standby alter database recover logical standby keep catupgrd.sql; Primary Log. Standby Switchover Log. Standby Primary flashback database to restore point pre_upgrade; -- Restart Database with New Oracle Home alter database convert to physical standby; -- Restart Database Phys. Standby Re-create Broker Configuration Maybe switchover Primary

38 Rolling Upgrade Conclusion Rolling upgrade is a procedure to perform an upgrade with less downtime Before beginning with a Rolling Upgrade, ensure that you have a lot of experience with Logical Standby Databases and Data Guard configurations Not supported with a Data Guard Broker Configuration Unsupported objects need attention during upgrade 38

39 Conclusion are a perfect combination of features Easy Recreation of Data from Past Recreation of Standby Databases is much easier Snapshot Standby Database is very valuable for Application Tests Rolling Upgrade can reduce downtime but needs to be tested and prepared very well 39

40 The Trivadis HA Package TVD-HA TM Currently TVD-HA TM consists of three main components DGADD for setup of a new environment DGMON for monitoring vip.sh for management of virtual IPs for Data Guard Efficiently creates Data Guard environments with high demands on quality assurance Monitors Data Guard environments Manages Virtual IPs within a Data Guard environment Supports Oracle versions 10g and above 40

41 The Trivadis Standby Package - TVD-Standby TM High Data Availability for Standard Edition (One), Express Edition Physical Standby Database Support Basic functionality of Data Guard log transport recovery (also with delay) But: No Zero data loss Role Changes Graceful Switchover Failover ASM and RAC Support Monitor Environment, Housekeeping 41

42 Thank you!? Baden Basel Bern Brugg Lausanne Zurich Düsseldorf Frankfurt/M. Freiburg i. Br. Hamburg Munich Stuttgart Vienna

Oracle Database 11g Data Guard

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

More information

Oracle 1Z0-053 Exam Questions & Answers

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

More information

INTRODUCTION EXTENDED FLASHBACK FUNCTIONS

INTRODUCTION EXTENDED FLASHBACK FUNCTIONS Reviewed by Oracle Certified Master Korea Community ( http://www.ocmkorea.com http://cafe.daum.net/oraclemanager ) ORACLE 10G BACKUP AND RECOVER NEW FEATURES INTRODUCTION Two improvements have been made

More information

Question No: 1 Which two statements are true for Data Guard environments with multi-tenant databases?

Question No: 1 Which two statements are true for Data Guard environments with multi-tenant databases? Volume: 92 Questions Question No: 1 Which two statements are true for Data Guard environments with multi-tenant databases? A. DB_UNIQUE_NAME must be specified differently for each pluggable database within

More information

Flashback. A quest for zero data loss. Tommie Grove. MyDBA. January P a g e F l a s h b a c k A q u e s t f o r z e r o d a t a l o s s

Flashback. A quest for zero data loss. Tommie Grove. MyDBA. January P a g e F l a s h b a c k A q u e s t f o r z e r o d a t a l o s s 1 P a g e F l a s h b a c k A q u e s t f o r z e r o d a t a l o s s Flashback A quest for zero data loss. Tommie Grove MyDBA January 2010 2 P a g e F l a s h b a c k A q u e s t f o r z e r o d a t a

More information

Oracle Database 12c: Data Guard Administration

Oracle Database 12c: Data Guard Administration Oracle University Contact Us: + 38516306373 Oracle Database 12c: Data Guard Administration Duration: 4 Days What you will learn This Oracle Database 12c: Data Guard Administration Ed 1 training teaches

More information

Database Rolling Upgrade with Transient Logical Standby Database DOAG Day High Availability Robert Bialek Principal Consultant

Database Rolling Upgrade with Transient Logical Standby Database DOAG Day High Availability Robert Bialek Principal Consultant Database Rolling Upgrade with Transient Logical Standby Database DOAG Day High Availability Robert Bialek Principal Consultant BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENF HAMBURG KOPENHAGEN

More information

Oracle Database 12c: Dataguard Administration

Oracle Database 12c: Dataguard Administration Oracle Database 12c: Dataguard Administration Intended Audience:DBA/Support Engineer/Technical Consultant Pre-Requisites:Practical Knowledge on Database Administration/Linux Operating System Fundamentals

More information

CO Oracle Database 12c: Data Guard Administration

CO Oracle Database 12c: Data Guard Administration CO-79232 Oracle Database 12c: Data Guard Administration Summary Duration 4 Days Audience Database Administrators, Support Engineers and Technical Analysts Level Professional Technology Oracle Database

More information

CO Oracle Database 11g: Data Guard Administration

CO Oracle Database 11g: Data Guard Administration CO-52161 Oracle Database 11g: Data Guard Administration Summary Duration 4 Days Audience Database Administrators, Support Engineers and Technical Analysts Level Professional Technology Oracle Database

More information

Oracle 12c Dataguard Administration (32 Hours)

Oracle 12c Dataguard Administration (32 Hours) Oracle 12c Dataguard Administration (32 Hours) Course Topics Introduction to Oracle Data Guard What Is Oracle Data Guard? Types of Standby Databases Types of Data Guard Services Role Transitions: Switchover

More information

Oracle Database 12c: Data Guard Administration LVC

Oracle Database 12c: Data Guard Administration LVC Oracle University Contact Us: Local: 0180 2000 526 Intl: +49 8914301200 Oracle Database 12c: Data Guard Administration LVC Duration: 4 Days What you will learn This Oracle Database 12c: Data Guard Administration

More information

Recovery without Backup. All Data Lost?

Recovery without Backup. All Data Lost? An Overview and Field Report Igor Romansky Peter Jensch Trivadis GmbH, Stuttgart DOAG Regio-Treffen Stuttgart, July 21th 2016 BASLE BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN

More information

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

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

More information

Oracle10g Data Guard: Back to the Future

Oracle10g Data Guard: Back to the Future Oracle10g Data Guard: Back to the Future Phil Grice Principal Software Engineer Oracle Corporation Page 1 www.decus.de 1 Agenda Oracle Data Guard a Quick Introduction Potential Data Guard Configurations

More information

Oracle 11g Data Guard Manual Failover Steps

Oracle 11g Data Guard Manual Failover Steps Oracle 11g Data Guard Manual Failover Steps Step by step approach to configure Oracle 11g Physical Standby Data Guard on CentOS 6.5 OS. In my case, Ingredients to simulate Physical Standby data guard SYSTEM

More information

Oracle Database 11g for Experienced 9i Database Administrators

Oracle Database 11g for Experienced 9i Database Administrators Oracle Database 11g for Experienced 9i Database Administrators 5 days Oracle Database 11g for Experienced 9i Database Administrators Course Overview The course will give experienced Oracle 9i database

More information

Maximum Availability Architecture. Oracle Best Practices for High Availability. Reducing Siebel Downtime with a Local Standby Database

Maximum Availability Architecture. Oracle Best Practices for High Availability. Reducing Siebel Downtime with a Local Standby Database Reducing Siebel Downtime with a Local Standby Database Oracle Maximum Availability Architecture White Paper November 2008 Maximum Availability Architecture Oracle Best Practices for High Availability Reducing

More information

Oracle Database 11g: SQL Fundamentals I

Oracle Database 11g: SQL Fundamentals I Oracle Database SQL Oracle Database 11g: SQL Fundamentals I Exam Number: 1Z0-051 Exam Title: Oracle Database 11g: SQL Fundamentals I Exam Number: 1Z0-071 Exam Title: Oracle Database SQL Oracle and Structured

More information

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

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

More information

White Paper. Increase ROI on Disaster Recovery Infrastructure. Implementing Snapshot Standby on Oracle 11g and 10g. Abstract

White Paper. Increase ROI on Disaster Recovery Infrastructure. Implementing Snapshot Standby on Oracle 11g and 10g. Abstract White Paper Increase ROI on Disaster Recovery Infrastructure Implementing Snapshot Standby on Oracle 11g and 10g Abstract Every mission critical system should have a DR plan in place to provide business

More information

ORACLE DATA GUARD REAL WORLD EXAMPLES AND TROUBLESHOOTING

ORACLE DATA GUARD REAL WORLD EXAMPLES AND TROUBLESHOOTING ORACLE DATA GUARD REAL WORLD EXAMPLES AND TROUBLESHOOTING AGENDA Brief overview Scenario High Availability Architecture Data Guard Until today Oracle 18c Best Practices for Creating /Monitoring/Troubleshoting

More information

UNIVERSITY AUTHORISED EDUCATION PARTNER (WDP)

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

More information

ORACLE 12C - M-IV - DBA - ADMINISTRADOR DE BANCO DE DADOS II

ORACLE 12C - M-IV - DBA - ADMINISTRADOR DE BANCO DE DADOS II ORACLE 12C - M-IV - DBA - ADMINISTRADOR DE BANCO DE DADOS II CONTEÚDO PROGRAMÁTICO Core Concepts and Tools of the Oracle Database The Oracle Database Architecture: Overview ASM Storage Concepts Connecting

More information

Oracle DBA Course Content

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

More information

Oracle Data Guard Tips and Tricks Direct from Oracle Development

Oracle Data Guard Tips and Tricks Direct from Oracle Development 1 2 Oracle Data Guard Tips and Tricks Direct from Oracle Development Larry M. Carpenter Oracle Server Technologies Distinguished Product Manager John Smiley Amazon.com Senior Database

More information

1Z Oracle Database 12c - Data Guard Administration Exam Summary Syllabus Questions

1Z Oracle Database 12c - Data Guard Administration Exam Summary Syllabus Questions 1Z0-066 Oracle Database 12c - Data Guard Administration Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-066 Exam on Oracle Database 12c - Data Guard Administration... 2 Oracle 1Z0-066

More information

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

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

More information

Oracle Database 11g: Administration Workshop I DBA Release 2

Oracle Database 11g: Administration Workshop I DBA Release 2 Oracle Database 11g: Administration Workshop II DBA Release 2 What you will learn: This course takes the database administrator beyond the basic tasks covered in the first workshop. The student begins

More information

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

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

More information

Configuring High Availability for the PMG DB

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

More information

Oracle Database Service High Availability with Data Guard?

Oracle Database Service High Availability with Data Guard? Oracle Database Service High Availability with Data Guard? Robert Bialek Senior Principal Consultant @RobertPBialek doag2017 Who Am I Senior Principal Consultant and Trainer at Trivadis GmbH in Munich.

More information

for Backup & Recovery & Failover

for Backup & Recovery & Failover Oracle s DataGuard 2009 for Backup & Recovery & Failover 2009 IBM Corporation Spencer Krueger, IBM skrueger@us.ibm.com Oracle s Data Guard Basic Backup & Recovery Practices w/o Data Guard What is it? Configuration:

More information

DataGuard in Practice

DataGuard in Practice DataGuard in Practice Matthias Mann Unicredit Business Integrated Solutions S.C.p.A. 80538 Munich, Germany Keywords: Active DataGuard Reader Farm, Snapshot Standby, Protection Modes, Reporting, Summary

More information

What was new in 11g for Backup and Recovery? Contents

What was new in 11g for Backup and Recovery? Contents What was new in 11g for Backup and Recovery? Contents Introduction... 3 RMAN New Features and Enhancements... 3 Proactive Health Check... 3 Database Recovery Advisor... 6 Faster Backup Compression... 11

More information

Oracle Database 11g: Data Guard Administration

Oracle Database 11g: Data Guard Administration D52161GC30 Edition 3.0 May 2010 D67578 Oracle Database 11g: Data Guard Administration Student Guide Authors Mark Fuller Donna K. Keesling Technical Contributors and Reviewers Todd Bao Harald van Breederode

More information

Oracle DataGuard 10gR2

Oracle DataGuard 10gR2 Oracle DataGuard 10gR2 PSOUG Education Hands-on Workshop Series Daniel A. Morgan damorgan@u.washington.edu 206-669-2949 We Do Not Practice: Slow Death by PowerPoint Discussion Oracle Data Guard Overview

More information

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

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

More information

Exam : Oracle 1Z0 043

Exam : Oracle 1Z0 043 Exam : Oracle 1Z0 043 Title : oracle database 10g:administration ii Update : Demo http://www.killtest.com 1. You have set the value of the NLS_TIMESTAMP_TZ_FORMAT parameter in the parameter file to YYYY

More information

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

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

More information

Oracle DBA workshop I

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

More information

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

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 Oracle Data Guard 12c Zero Data Loss at Any Distance Joseph Meeks Director of Product Management, Oracle Madhu Tumma Technology Director, J P Morgan Chase 2 Program Agenda Zero Data Loss Disaster Protection

More information

Oracle Database 11g Administration Workshop II

Oracle Database 11g Administration Workshop II Oracle Database 11g Administration Workshop II Course information Days : 5 Total lessons : 20 Suggested Prerequisites : Oracle Database 11g: SQL Fundamentals I Oracle Database 11g: Administration Workshop

More information

Programa de Actualización Profesional ACTI Oracle Database 11g: Administration Workshop II

Programa de Actualización Profesional ACTI Oracle Database 11g: Administration Workshop II Programa de Actualización Profesional ACTI Oracle Database 11g: Administration Workshop II What you will learn This Oracle Database 11g: Administration Workshop II Release 2 training takes the database

More information

ORACLE DBA TRAINING IN BANGALORE

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

More information

How To Apply Archive Logs Manually In Standby Database Using Rman

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

More information

Oracle Data Guard in Oracle Database 10g Release 2 Business Continuity for the Enterprise. An Oracle White Paper November 2006

Oracle Data Guard in Oracle Database 10g Release 2 Business Continuity for the Enterprise. An Oracle White Paper November 2006 Oracle Data Guard in Oracle Database 10g Release 2 Business Continuity for the Enterprise An Oracle White Paper November 2006 Oracle Data Guard Business Continuity for the Enterprise Executive Overview...

More information

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

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

More information

LOSS OF FULL DATABASE AND DATABASE RECOVERY ORACLE 11g

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

More information

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

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

More information

Oracle Active Data Guard - Overview

Oracle Active Data Guard - Overview Oracle Active Data Guard - Overview Greg Walters Sr. Technology Sales Consultant INOUG April 28, 2011 Copyright 2011, Oracle Corporation and/or its affiliates Agenda Oracle Database

More information

OCP Oracle Database 12c: Advanced Administration Exam Guide

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

More information

An Oracle White Paper September Methods for Upgrading to Oracle Database 11g Release 2

An Oracle White Paper September Methods for Upgrading to Oracle Database 11g Release 2 An Oracle White Paper September 2009 Methods for Upgrading to Oracle Database 11g Release 2 Introduction... 1 Database Upgrade Methods... 2 Database Upgrade Assistant (DBUA)... 2 Manual Upgrade... 3 Export

More information

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

Oracle - Oracle Database 12c: Backup and Recovery Workshop Ed 2 Oracle - Oracle Database 12c: Backup and Recovery Workshop Ed 2 Code: Lengt h: URL: 12cDB-BR 5 days View Online This Oracle Database 12c: Backup and Recovery Workshop will teach you how to evaluate your

More information

Converting to Transparent Data Encryption with Oracle Data Guard using Fast Offline Conversion Oracle Database 12.1 and Oracle Database 11.

Converting to Transparent Data Encryption with Oracle Data Guard using Fast Offline Conversion Oracle Database 12.1 and Oracle Database 11. Converting to Transparent Data Encryption with Oracle Data Guard using Fast Offline Conversion Oracle Database 12.1 and Oracle Database 11.2 O R A C L E W H I T E P A P E R A U G U S T 2 0 1 7 Table of

More information

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

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

More information

Oracle 1Z Upgrade Oracle9i/10g OCA to Oracle Database 11g OCP. Download Full Version :

Oracle 1Z Upgrade Oracle9i/10g OCA to Oracle Database 11g OCP. Download Full Version : Oracle 1Z0-034 Upgrade Oracle9i/10g OCA to Oracle Database 11g OCP Download Full Version : http://killexams.com/pass4sure/exam-detail/1z0-034 QUESTION: 142 You executed the following query: SELECT oldest_flashback_scn,

More information

Data Guard Deep Dive

Data Guard Deep Dive Emre Baransel DBA, Employee ACE- Oracle Choosing the Protection Mode MODE REDO TRANSPORT ACTION WITH NO STANDBY DATABASE CONNECTION RISK OF DATA LOSS Maximum Protection Maximum Availability Maximum Performance

More information

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

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

More information

Oracle12c Release 1 New Features for Administrators (5 Days)

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

More information

12.1 Multitenancy in real life

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

More information

<Insert Picture Here> Maximum Availability Architecture (MAA) Best Practices: Online Patching and Rolling Upgrades with Oracle Database

<Insert Picture Here> Maximum Availability Architecture (MAA) Best Practices: Online Patching and Rolling Upgrades with Oracle Database 2007 Oracle 1 2007 Oracle 2 Maximum Availability Architecture (MAA) Best Practices: Online Patching and Rolling Upgrades with Oracle Database Ray Dutcher, Maximum Availability Architecture,

More information

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

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

More information

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

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

More information

Mike Hughes Allstate Oracle Tech Lead, Oracle Performance DBA

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

More information

Steps Create Physical Standby Database Oracle 9i

Steps Create Physical Standby Database Oracle 9i Steps Create Physical Standby Database Oracle 9i Upgrading from Oracle Database 9i Release 2 (9.2) to Oracle Database 12c Release The standby database is a physical standby database. The following steps

More information

Enterprise Manager: Scalable Oracle Management

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

More information

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

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Oracle University Contact Us: +386 1 588 88 13 Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Duration: 5 Days What you will learn In this Oracle Database 12c R2: Backup and Recovery Workshop,

More information

Oracle RMAN for Absolute Beginners

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

More information

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

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

More information

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

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

More information

Maximum Availability Architecture. Oracle Best Practices For High Availability

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

More information

ORANET- Course Contents

ORANET- Course Contents ORANET- Course Contents 1. Oracle 11g SQL Fundamental-l 2. Oracle 11g Administration-l 3. Oracle 11g Administration-ll Oracle 11g Structure Query Language Fundamental-l (SQL) This Intro to SQL training

More information

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

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

More information

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

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

More information

Online Operations in Oracle 12.2

Online Operations in Oracle 12.2 Online Operations in Oracle 12.2 New Features and Enhancements Christian Gohmann BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH STUTTGART VIENNA ZURICH

More information

ORACLE DATABASE: ADMINISTRATION WORKSHOP II

ORACLE DATABASE: ADMINISTRATION WORKSHOP II ORACLE DATABASE: ADMINISTRATION WORKSHOP II CORPORATE COLLEGE SEMINAR SERIES Date: March 18 April 25 Presented by: Lone Star Corporate College in partnership with the Oracle Workforce Development Program

More information

ORACLE 10g/9i DATA GUARD LOGICAL STANDBY DATABASE

ORACLE 10g/9i DATA GUARD LOGICAL STANDBY DATABASE Session id: 12766 ORACLE 10g/9i DATA GUARD LOGICAL STANDBY DATABASE Inderpal S. Johal Principal Consultant AGENDA Standby Database enhancements Data Guard and its Architecture Background Process Pre-requisite

More information

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

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

More information

1Z Upgrade Oracle9i/10g to Oracle Database 11g OCP Exam Summary Syllabus Questions

1Z Upgrade Oracle9i/10g to Oracle Database 11g OCP Exam Summary Syllabus Questions 1Z0-034 Upgrade Oracle9i/10g to Oracle Database 11g OCP Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-034 Exam on Upgrade Oracle9i/10g to Oracle Database 11g OCP... 2 Oracle 1Z0-034

More information

1z z0-060 Upgrade to Oracle Database 12c

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

More information

ORACLE DATABASE: ADMINISTRATION WORKSHOP II

ORACLE DATABASE: ADMINISTRATION WORKSHOP II ORACLE DATABASE: ADMINISTRATION WORKSHOP II CORPORATE COLLEGE SEMINAR SERIES Date: March 18 April 25 Presented by: Lone Star Corporate College in partnership with the Oracle Workforce Development Program

More information

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

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

More information

Projects. Corporate Trainer s Profile. CMM (Capability Maturity Model) level Project Standard:- TECHNOLOGIES

Projects. Corporate Trainer s Profile. CMM (Capability Maturity Model) level Project Standard:- TECHNOLOGIES Corporate Trainer s Profile Corporate Trainers are having the experience of 4 to 12 years in development, working with TOP CMM level 5 comapnies (Project Leader /Project Manager ) qualified from NIT/IIT/IIM

More information

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

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

More information

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

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

More information

Question: 1 For which two SQL statements can you use the Flashback Table feature to revert a table to its previous state? (Choose two.

Question: 1 For which two SQL statements can you use the Flashback Table feature to revert a table to its previous state? (Choose two. Question: 1 For which two SQL statements can you use the Flashback Table feature to revert a table to its previous state? (Choose two.) A. UPDATE TABLE B. CREATE CLUSTER C. TRUNCATE TABLE D. ALTER TABLE

More information

Oracle 1Z Oracle Database 12c: Data Guard Administration. Download Full version :

Oracle 1Z Oracle Database 12c: Data Guard Administration. Download Full version : Oracle 1Z0-066 Oracle Database 12c: Data Guard Administration Download Full version : https://killexams.com/pass4sure/exam-detail/1z0-066 QUESTION: 177 Which three statements are true about Global Sequences

More information

Oracle Database 12c: OCM Exam Preparation Workshop Ed 1

Oracle Database 12c: OCM Exam Preparation Workshop Ed 1 Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle Database 12c: OCM Exam Preparation Workshop Ed 1 Duration: 5 Days What you will learn The Oracle Database 12c: OCM Exam Preparation

More information

FILE / RMAN BACKUP PRODUCTS MANUAL EBOOK

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

More information

Oracle Database 10g: New Features for Administrators Release 2

Oracle Database 10g: New Features for Administrators Release 2 Oracle University Contact Us: +27 (0)11 319-4111 Oracle Database 10g: New Features for Administrators Release 2 Duration: 5 Days What you will learn This course introduces students to the new features

More information

Installing the Oracle Database Softwar

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

More information

1. Name of Course: Oracle Database 12c: Backup and Recovery Workshop

1. Name of Course: Oracle Database 12c: Backup and Recovery Workshop ITSW 2037 Course Syllabus 1. Name of Course: Oracle Database 12c: Backup and Recovery Workshop 2. Number of Clock Hours: 60 hours 3. Course Description: Students will gain an understanding of Oracle database

More information

ALTER DATABASE RECOVER TO LOGICAL STANDBY KEEP IDENTITY;

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

More information

DOC ORACLE STANDBY USER MANUAL ARCHIVE

DOC ORACLE STANDBY USER MANUAL ARCHIVE 19 December, 2017 DOC ORACLE STANDBY USER MANUAL ARCHIVE Document Filetype: PDF 254.06 KB 0 DOC ORACLE STANDBY USER MANUAL ARCHIVE ALTER DATABASE CREATE STANDBY CONTROLFILE. 3 How to configure Standby

More information

Oracle Database 11g: Administration Workshop II Release 2

Oracle Database 11g: Administration Workshop II Release 2 Oracle Database 11g: Administration Workshop II Release 2 Course Details Duration: Course code: 5 Days OC11GDBA2R2 Overview: This course takes the database administrator beyond the basic tasks covered

More information

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

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

More information

Recovering Oracle Databases

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

More information

Oracle - Oracle Database 11g: Backup and Recovery Workshop (Training On Demand)

Oracle - Oracle Database 11g: Backup and Recovery Workshop (Training On Demand) Oracle - Oracle Database 11g: Backup and Recovery Workshop (Training On Demand) Code: URL: D89616GC10 View Online This Oracle Database 11g: Backup and Recovery Workshop will teach you how to evaluate your

More information

Exam : 1Z Title : Oracle Database 10g: Administration II. Ver :

Exam : 1Z Title : Oracle Database 10g: Administration II. Ver : Exam : 1Z0-043 Title : Oracle Database 10g: Administration II Ver : 04.14.08 QUESTION 1 You observe that a database performance has degraded over a period of time. While investigating the reason, you find

More information