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

Size: px
Start display at page:

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

Transcription

1 1

2 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

3 Program Agenda Zero Data Loss Disaster Protection - The Basics Challenge / Compromise Solution JPMorgan Chase & Co - Walk the Walk 3

4 Basic Principle of Zero Data Loss Requires Synchronous Communication Commit Ack Network Ack Commit Network Send Primary Standby The greater the distance, the larger the performance impact 4

5 Geographic Separation and Disaster Recovery DR Deployed at Distances Too Far for Synchronous Replication Typical Distance Between Primary and DR sites Greater than 300 miles Less than 100 miles miles 233 Responses in an IOUG Survey

6 Forces Compromise Pick your poison: Sacrifice performance for zero data loss Deploy storage forwarding solutions Accept data loss and more downtime 6

7 Trade-off Performance for Zero Data Loss Customer Performance Tests RTT Latency Network Round Trip milliseconds Data Guard Primary Database Performance Impact Remote Mirroring Primary Database Performance Impact 0 4% 3% 10 4% 26% % 39% 7

8 Deploy Storage Forwarding Solutions EMC Extended Distance Replication: An Example SRDF/S SRDF/A Synchronous storage mirroring to intermediate Symmetrix array Asynchronous forwarding to remote Symmetrix array for disaster recovery 8

9 Storage Remote-Mirroring: Fundamental Flaw Zero Oracle Awareness, Mirrors Every Write for Real-Time Protection Primary Database Oracle Instance (in memory) Remote Volumes Recovery files Remote mirror all changed blocks SYNC or ASYNC Recovery files Oracle data files Oracle data files 9

10 Deploy Data Guard Multi-Standby A Better Solution Primary SYNC Local Standby ASYNC Remote Standby Local synchronous standby HA failover with zero data loss Remote asynchronous standby for geo protection Data Guard Real-Time Cascade - new with Oracle Database 12c Many advantages: Best data protection, multiple recovery options, planned maintenance, testing 10

11 Data Guard: Fundamentally Best for Oracle Data Oracle Aware - Simple, Efficient, Physical Replication Primary Database Oracle Instance (in memory) database redo SYNC or ASYNC Standby Database Oracle Instance (in memory) Recovery files Recovery files Oracle data files 95% less network I/O 85% less network volume Knowledge of Oracle redo and block structures used to prevent corruption Oracle data files 11

12 Multi-Standby Configuration Not Ideal for All Requirements If zero data loss failover to the remote DR site is the only requirement, then multi-standby configuration would: Increase hardware, software, and support costs Increase downtime for two-step failover to the remote DR site Step 1: Failover to local standby Step 2: Switchover remote standby where production will run 12

13 Result: Accept Data Loss and Downtime The Compromise Chosen by Many Enterprises for Long-Distance DR Asynchronous transport Data Guard Maximum Performance Least cost with fast, single step role transition Failover means data loss Data loss poses a dilemma that increases downtime: What data will I lose if I failover? How will lost data impact the business? Instead of failing over, can I repair the problem and avoid data loss? 13

14 Data Guard 12c Far Sync Putting an End to Compromise 14

15 Data Guard Far Sync Transformation: From Compromise to Zero Data Loss Protection Primary ASYNC Remote Standby Start with any existing Data Guard configuration In this example Data Guard Maximum Performance/ASYNC with remote standby 15

16 Data Guard Far Sync Transformation: From Compromise to Zero Data Loss Protection Far Sync Primary ASYNC Remote Standby Deploy a light-weight Far Sync instance on a separate server Oracle instance, standby control file, redo and archived redo log files No user data files, no media recovery Locate the Far Sync instance at the maximum distance from the primary where performance SLAs can tolerate the impact of synchronous redo transport 16

17 Data Guard Far Sync Transformation: From Compromise to Zero Data Loss Protection Primary SYNC Far Sync ASYNC Remote Standby Configure the primary to ship redo synchronously to the Far Sync instance Configure Far Sync to forward redo asynchronously to the remote standby Supports up to 29 remote destinations Can also compress redo to conserve WAN bandwidth (requires ACO license) Standard RMAN deletion policies automate archive log management An alternate Far Sync instance on a separate server can be used for HA (not shown) 17

18 Data Guard Far Sync Primary Failure No Problem Primary Far Sync ASYNC Remote Standby Far Sync completes sending redo for all committed transactions 18

19 Data Guard Far Sync Zero Data Loss Failover Primary Far Sync Single-Step Role Transition New Primary Far Sync confirms that the configuration is in zero data loss state Fast, single-step, zero data loss failover to remote standby Same failover command as for any Data Guard configuration Manual or automatic using Data Guard Fast-Start Failover Same transparency during planned switchovers for testing or maintenance 19

20 Far Sync Pre-reqs Compatibility with other platforms in the Data Guard configuration My Oracle Support Note e.g. Far Sync for an Exadata configuration can be deployed on any Linux platform, or even on Windows Minimal storage requirements You decide how much storage to allocate for archive logs should transmission be interrupted resolve gaps without impacting primary Minimal CPU, memory, or I/O No recovery, no data files, production never runs on the Far Sync instance 20

21 Far Sync Instance Creation Simple and Lightweight Create a control file using a mounted primary SQL> ALTER DATABASE CREATE FAR SYNC INSTANCE CONTROLFILE AS '/tmp/fs1.ctl'; Copy the server parameter file (SPFILE) and password file used by the primary database Several initialization parameters are also modified for Far Sync Copy the control file to the Far Sync instance Create standby redo log files at the Far Sync instance Start the Far Sync instance DATABASE_ROLE column in V$DATABASE will show FAR SYNC 21

22 Redo Transport Details Without Far Sync Maximum Performance, all Failovers Result in Data Loss PROD LOG_ARCHIVE_CONFIG='DG_CONFIG=(PROD, DR)' LOG_ARCHIVE_DEST_2='SERVICE=DR DB_UNIQUE_NAME=DR VALID_FOR=(PRIMARY_ROLE,ONLINE_LOGFILE)' LOG_ARCHIVE_DEST_STATE_2=ENABLE DR LOG_ARCHIVE_CONFIG='DG_CONFIG=(PROD, DR)' LOG_ARCHIVE_DEST_2='SERVICE=PROD DB_UNIQUE_NAME=PROD VALID_FOR=(PRIMARY_ROLE,ONLINE_LOGFILE)' LOG_ARCHIVE_DEST_STATE_2=ENABLE 22

23 Add Far Sync and Designate DR as Alternate Maximum Availability Zero Data Loss FS1 Ship to DR DR LOG_ARCHIVE_CONFIG='DG_CONFIG=(FS1, PROD, DR)' LOG_ARCHIVE_DEST_2='SERVICE=DR DB_UNIQUE_NAME=DR VALID_FOR=(STANDBY_ROLE,STANDBY_LOGFILE)' LOG_ARCHIVE_DEST_STATE_2=ENABLE LOG_ARCHIVE_CONFIG='DG_CONFIG=(FS1, PROD, DR) PROD SYNC to FS1 DR is Alternate LOG_ARCHIVE_CONFIG='DG_CONFIG=(FS1, PROD, DR)' LOG_ARCHIVE_DEST_STATE_2=ALTERNATE LOG_ARCHIVE_DEST_3='SERVICE=FS1 SYNC AFFIRM MAX_FAILURE=1 ALTERNATE=LOG_ARCHIVE_DEST_2 DB_UNIQUE_NAME=FS1 VALID_FOR=(PRIMARY_ROLE,ONLINE_LOGFILE)' LOG_ARCHIVE_DEST_STATE_3=ENABLE 23

24 Add Second Far Sync Destination for HA Maintain Zero Data Loss if Far Sync Server Outage FS2 Ship to DR LOG_ARCHIVE_CONFIG='DG_CONFIG=(FS2, PROD, DR)' LOG_ARCHIVE_DEST_2='SERVICE=DR DB_UNIQUE_NAME=DR VALID_FOR=(STANDBY_ROLE,STANDBY_LOGFILE)' LOG_ARCHIVE_DEST_STATE_2=ENABLE DR LOG_ARCHIVE_CONFIG='DG_CONFIG=(FS1, FS2, PROD, DR)' PROD FS2 is alternate in place of DR LOG_ARCHIVE_CONFIG='DG_CONFIG=(FS1, FS2, PROD, DR)' LOG_ARCHIVE_DEST_2='SERVICE=FS2 SYNC AFFIRM DB_UNIQUE_NAME=FS2 VALID_FOR=(PRIMARY_ROLE,ONLINE_LOGFILE) LOG_ARCHIVE_DEST_STATE_2=ALTERNATE 24

25 Data Guard Broker and Far Sync Automatically configures ASYNC redo transport from PROD to FS1 DGMGRL> ADD FAR_SYNC_INSTANCE FS1 AS CONNECT IDENTIFIER is FS1; Manually configure DR to receive from FS1 using RedoRoutes DGMGRL> EDIT FAR_SYNC_INSTANCE FS1 SET PROPERTY RedoRoutes= (PROD:DR ASYNC) ; Manually configure primary to only ship to FS1 and modify to SYNC DGMGRL> EDIT DATABASE PROD SET PROPERTY RedoRoutes= (LOCAL:FS1 SYNC) ; 25

26 Distance Between Far Sync & Primary? Impossible to completely escape the impact of RTT network latency on performance For best protection, locate the Far Sync instance at the maximum distance an application can tolerate synchronous transport Different applications will have different tolerance to RTT latency New Data Guard 12c Fast Sync will increase the practical distance Near-zero performance impact if network RTT is less than local I/O time 26

27 Data Guard 12c Synchronous Transport Process Architecture same as Data Guard 11g Release 2 User Transactions Queries, Updates, DDL Commit Primary Online Redo Logs Queries Reports Testing Backups SGA Redo Buffer LGWR NSS Oracle Net RFS Standby Redo Logs MRP Primary Database Active Standby 27

28 Introducing Data Guard 12c Fast Sync Net Reduction in Round-Trip Time Improves Performance User Transactions Queries, Updates, DDL Commit Primary Online Redo Logs Queries Reports Testing Backups SGA Redo Buffer LGWR NSS Oracle Net RFS Standby Redo Logs MRP Primary Database LOG_ARCHIVE_DEST_3='SERVICE=stby1 SYNC NOAFFIRM' Active Standby 28

29 Data Guard 12c The Evolution Continues Production Offload, HA, Data Protection Far Sync zero data loss and production offload WAN zero data loss failover to remote standby Off-host redo transport compression requires ACO Gap resolution Serve up to 29 remote destinations Expand reporting offload to Active Standby DML to global temp tables Sequence support Use cascaded destination for up-to-date reporting Real-Time Cascade HA Upgrade - automation for database rolling upgrades Performance, Manageability, Feature Support Fast Sync Data Guard Broker Validate database - role change readiness Resumable switchover Automatic lag monitoring based on user configurable thresholds Support for cascaded standby and real-time cascade Configurable Broker tracing Support for Container Databases Separation of Duties - Data Guard Administrative Privilege 29

30

31

32

33

34

35

36

37

38

39 ASYNC transport mode

40

41 Data Guard Far Sync Putting an End to Compromise Zero Data Loss at any distance High Performance Simple Low Cost 41

42 Resources OTN Data Guard Portal: OTN HA Portal: Maximum Availability Architecture (MAA): MAA Blogs: Oracle HA Customer Success Stories on OTN: 42

43 Key HA Sessions and Demos by Oracle Development Monday, 1 October Moscone South 12:30p Oracle Data Guard Zero-Data-Loss Protection at Any Distance, :30p Future of Exadata: OLTP, Warehousing, and Consolidation, 104 1:45p Automating ILM with the Latest Database Technology, 300 1:45p Extracting Data in Oracle GoldenGate Integrated Capture Mode, 102 3:15p Maximize Availability with the Latest Database Technology, 303 3:15p Maximize Enterprise Availability with the Latest DB Technology, 303 4:45p Mission-Critical Oracle Exadata OLTP Deployment at PayPal, 300 4:45p Temporal Database Capabilities with the Latest DB Technology, 300 Tuesday, 2 October Moscone South 10:15a Database Tables to Storage Bits: Data Protection Best Practices, :15a GoldenGate & Data Guard: Working Together Seamlessly, :45a Active Data Guard Zero-Downtime Database Maintenance, :45a Using Automatic Storage Mgmt with the Latest DB Technology, 301 1:15p The Four Ts of RMAN: Tips, Tuning, Troubleshooting, and?, 102 5:00p Maximum Availability Architecture Best Practices for Exadata, 303 Demos Mon 10:00a-6:00p - Tue 9:45a-6:00p - Wed 9:45a-4:00p Oracle Maximum Availability Architecture, S-011 GoldenGate 11gR2: Real-Time, Transactional DB Replication, S-027 Oracle Database 12c: Global Data Services, S-010 Oracle Database 12c Application Continuity - S-009 Wednesday, 3 October Moscone South 10:15a Operational Best Practices for Oracle Exadata, :15a Maximize Availability by Minimizing Disruption for End Users and Application, :45a What s New in the Latest Generation of Oracle RAC, :45a Best Practices for HA w/ GoldenGate on Oracle Exadata, 102 1:15p Oracle Secure Backup: Integration Best Practices with Engineered Systems, 300 1:15p Application MAA Best Practices on Oracle Private Clouds, 200 5:00p Tuning &Troubleshooting Oracle GoldenGate on Oracle, 102 Thursday, 4 October Moscone South 11:15a Integrate Your Globally Distributed Databases for Key Cloud Computing Benefits, :45p Backup and Recovery of Oracle Exadata: Experiences and Best Practices, 300 Oracle Secure Backup, S-014 Oracle Active Data Guard, S-007 Oracle Recovery Manager and Oracle Flashback Technologies, S-019 Oracle Real Application Clusters and Oracle RAC One Node - S-008 Oracle Database 12c Xstream, Streams, Advanced Queing, S After OpenWorld, visit oracle.com/goto/availability

44 The preceding is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, and timing of any features or functionality described for Oracle s products remains at the sole discretion of Oracle. 44

45 Graphic Section Divider 45

46 46

Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 13

Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 13 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 13 Operational Best Practices for Oracle Exadata Lawrence To Senior Director,

More information

The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into

The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into 1 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any

More information

Oracle Database 11g Data Guard

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

More information

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

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

More information

Top Oracle Database 11g High Availability Best Practices

Top Oracle Database 11g High Availability Best Practices Top Oracle Database 11g High Availability Best Practices Joseph Meeks Director, Product Management Frank Kobylanski Principal, Technical Staff MAA Development Vinod Haval, VP Global

More information

Safe Harbor Statement

Safe Harbor Statement Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment

More information

Eliminate Idle Redundancy with Oracle Active Data Guard

Eliminate Idle Redundancy with Oracle Active Data Guard Eliminate Idle Redundancy with Oracle Active Data Guard What is Oracle Data Guard Data Protection and Availability for the Oracle Primary Site Standby Site SYNC / ASYNC Primary Data Guard Physical or Logical

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

Deploying the Zero Data Loss Recovery Appliance in a Data Guard Configuration ORACLE WHITE PAPER MARCH 2018

Deploying the Zero Data Loss Recovery Appliance in a Data Guard Configuration ORACLE WHITE PAPER MARCH 2018 Deploying the Zero Data Loss Recovery Appliance in a Data Guard Configuration ORACLE WHITE PAPER MARCH 2018 Table of Contents Introduction 1 Overview 2 Prerequisites 2 Deploying Recovery Appliances with

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

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

Copyright 2018, Oracle and/or its affiliates. All rights reserved. Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment

More information

Oracle Active Data Guard

Oracle Active Data Guard Oracle Active Data Guard Real-Time Data Protection and Availability ORACLE WHITE PAPER MAY 2018 Table of Contents Introduction 1 Oracle Active Data Guard An Overview 2 How Data Guard Synchronizes Standby

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

Oracle Active Data Guard

Oracle Active Data Guard Oracle Active Data Guard Real-Time Data Protection and Availability ORACLE WHITE PAPER DECEMBER 2014 Table of Contents Introduction 1 Oracle Active Data Guard An Overview 2 How Data Guard Synchronizes

More information

Database Tables to Storage Bits: Data Protection Best Practices for Oracle Database

Database Tables to Storage Bits: Data Protection Best Practices for Oracle Database Database Tables to Storage Bits: Data Protection Best Practices for Oracle Database Ashish Ray, Senior Director, Product Management, Oracle Gurmeet Goindi, Principal Product Manager, Oracle Gagan Singh,

More information

Global Data Services (GDS)

Global Data Services (GDS) Global Data s (GDS) Geo-distributed Oracle GoldenGate and Active Data Guard Larry M. Carpenter Master Product Manager Oracle High Availability Systems Safe Harbor Statement The following is intended to

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

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

ZDLRA High Availability for Backup and Recovery

ZDLRA High Availability for Backup and Recovery ZDLRA High Availability for Backup and Recovery Oracle Server Technology High Availability Systems Development Maximum Availability Architecture September 2018 Safe Harbor Statement The following is intended

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

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

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

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

More information

Chapter. Data Guard Architecture

Chapter. Data Guard Architecture Chapter 1 Data Guard Architecture 1 2 Oracle Data Guard 11g Handbook H uman error, hardware failures, software and network failures, and large-scale events such as fires, hurricanes, and earthquakes all

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

Sessions Related to Database High Availability

Sessions Related to Database High Availability Sessions Related to Database High Availability Monday October 1 GEN8259 General Session: What s Next for Oracle Database? Monday 10:45 pm Moscone North, Hall D Consolidating databases onto private clouds,

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

Database Tables to Storage Bits: Data Protection Best Practices for Oracle Database

Database Tables to Storage Bits: Data Protection Best Practices for Oracle Database Database Tables to Storage Bits: Data Protection Best Practices for Oracle Database Gurmeet Goindi, Principal Product Manager, Oracle 1 Agenda Database & Storage Architecture Data Protection with Storage

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

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 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 MAA Blueprints for Oracle Cloud Infrastructure (OCI) Deployments

Oracle MAA Blueprints for Oracle Cloud Infrastructure (OCI) Deployments Oracle MAA Blueprints for Oracle Cloud Infrastructure (OCI) Deployments Oracle Database High Availability in the Cloud ORACLE WHITE PAPER DECEMBER 2018 Disclaimer The following is intended to outline our

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

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

<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

Maximum Availability Architecture on Dell PowerEdge Servers and Dell/EMC Storage over Wide Area Networks

Maximum Availability Architecture on Dell PowerEdge Servers and Dell/EMC Storage over Wide Area Networks Implementing Oracle Database 10g0 Maximum Availability Architecture on Dell PowerEdge Servers and Dell/EMC Storage over Wide Area Networks The high cost of downtime has prompted many organizations to view

More information

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

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 Backup and Recovery of Oracle Exadata: Experiences and Best Practices Andrew Babb, Oracle, Consulting Member of Technical Staff Donna Cooksey, Oracle, Principal Product Manager 2 The Data Protection

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 Maximum Availability Architecture Best Practices for Oracle Multitenant

Oracle Maximum Availability Architecture Best Practices for Oracle Multitenant Oracle Maximum Availability Architecture Best Practices for Oracle Multitenant Joseph Meeks, Oracle Frank Kobylanski, Oracle Kalyan Kallepally, Wellcome Trust Sanger Institute Program Agenda High Availability

More information

The Right Choice for DR: Data Guard, Stretch Clusters, or Remote Mirroring. Ashish Ray Group Product Manager Oracle Corporation

The Right Choice for DR: Data Guard, Stretch Clusters, or Remote Mirroring. Ashish Ray Group Product Manager Oracle Corporation The Right Choice for DR: Data Guard, Stretch Clusters, or Remote Mirroring Ashish Ray Group Product Manager Oracle Corporation Causes of Downtime Unplanned Downtime Planned Downtime System Failures Data

More information

Oracle Active Data Guard Far Sync with Axxana Phoenix for Oracle O R A C L E W H I T E P A P E R S E P T E M B E R

Oracle Active Data Guard Far Sync with Axxana Phoenix for Oracle O R A C L E W H I T E P A P E R S E P T E M B E R Oracle Active Data Guard Far Sync with Axxana Phoenix for Oracle O R A C L E W H I T E P A P E R S E P T E M B E R 2 0 1 5 Table of Contents Executive Summary 1 The Challenges of Obtaining Zero Data Loss

More information

Oracle MAA Reference Architectures

Oracle MAA Reference Architectures Oracle MAA Reference Architectures Oracle Database High Availability On-Premises and in the Cloud ORACLE WHITE PAPER FEBRUARY 2016 Disclaimer The following is intended to outline our general product direction.

More information

Oracle Maximum Availability Architecture for Oracle Cloud

Oracle Maximum Availability Architecture for Oracle Cloud Oracle Maximum Availability Architecture for Oracle Cloud Best Practices and Techniques Sridhar Ranganathan Sr. Principal Product Manager Oracle Database MAA October 04, 2017 Safe Harbor Statement The

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

SAN for Business Continuity

SAN for Business Continuity SAN for Business Continuity How Cisco IT Achieves Subminute Recovery Point Objective A Cisco on Cisco Case Study: Inside Cisco IT 1 Overview Challenge Improve recovery point objective (RPO) and recovery

More information

Oracle MAA Blueprints for Oracle Bare Metal Cloud Deployments

Oracle MAA Blueprints for Oracle Bare Metal Cloud Deployments Oracle MAA Blueprints for Oracle Bare Metal Cloud Deployments Oracle Database High Availability in the Cloud ORACLE WHITE PAPER JUNE 2017 Disclaimer The following is intended to outline our general product

More information

Oracle Database 18c and Autonomous Database

Oracle Database 18c and Autonomous Database Oracle Database 18c and Autonomous Database Maria Colgan Oracle Database Product Management March 2018 @SQLMaria Safe Harbor Statement The following is intended to outline our general product direction.

More information

Oracle Database 12c High Availability For Consolidation and Cloud Deployments

Oracle Database 12c High Availability For Consolidation and Cloud Deployments Oracle Database 12c High Availability For Consolidation and Cloud Deployments Wei Hu Vice President of Development High Availability Technologies, Oracle Corporation Vitor Pacheco Associate Director, Data

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

The Fastest and Most Cost-Effective Backup for Oracle Database: What s New in Oracle Secure Backup 10.2

The Fastest and Most Cost-Effective Backup for Oracle Database: What s New in Oracle Secure Backup 10.2 1 The Fastest and Most Cost-Effective Backup for Oracle Database: What s New in Oracle Secure Backup 10.2 Donna Cooksey Principal Product Manager, Oracle Corporation Sean McKeown

More information

Zero Data Loss Recovery Appliance DOAG Konferenz 2014, Nürnberg

Zero Data Loss Recovery Appliance DOAG Konferenz 2014, Nürnberg Zero Data Loss Recovery Appliance Frank Schneede, Sebastian Solbach Systemberater, BU Database, Oracle Deutschland B.V. & Co. KG Safe Harbor Statement The following is intended to outline our general product

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

Comparing Data Protection Solutions: Database-Integrated or Storage-Centric

Comparing Data Protection Solutions: Database-Integrated or Storage-Centric Comparing Data Protection Solutions: Database-Integrated or Storage-Centric Ashish Ray Director of Product Management Database High Availability Lawrence To Senior Manager / CMTS exadata and MAA Best Practices

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 10g: Data Guard Administration

Oracle Database 10g: Data Guard Administration Oracle Database 10g: Data Guard Administration Volume I Student Guide D17316GC20 Edition 2.0 October 2006 D47657 Author Donna K. Keesling Technical Contributors and Reviewers Christopher D. Andrews Harald

More information

Internals of Active Dataguard. Saibabu Devabhaktuni

Internals of Active Dataguard. Saibabu Devabhaktuni Internals of Active Dataguard Saibabu Devabhaktuni PayPal DB Engineering team Sehmuz Bayhan Our visionary director Saibabu Devabhaktuni Sr manager of DB engineering team http://sai-oracle.blogspot.com

More information

Exadata Implementation Strategy

Exadata Implementation Strategy Exadata Implementation Strategy BY UMAIR MANSOOB 1 Who Am I Work as Senior Principle Engineer for an Oracle Partner Oracle Certified Administrator from Oracle 7 12c Exadata Certified Implementation Specialist

More information

New England Data Camp v2.0 It is all about the data! Caregroup Healthcare System. Ayad Shammout Lead Technical DBA

New England Data Camp v2.0 It is all about the data! Caregroup Healthcare System. Ayad Shammout Lead Technical DBA New England Data Camp v2.0 It is all about the data! Caregroup Healthcare System Ayad Shammout Lead Technical DBA ashammou@caregroup.harvard.edu About Caregroup SQL Server Database Mirroring Selected SQL

More information

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

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. Active Data Guard Lessons Learned from Real Life Implementations 2 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

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

Rishi Mohan Awasthi 1, Rishi Kumar 2, Raghav Garg 3 1,2,3 B.Tech, Computer Science & Engineering, IMS Engineering College, Ghaziabad

Rishi Mohan Awasthi 1, Rishi Kumar 2, Raghav Garg 3 1,2,3 B.Tech, Computer Science & Engineering, IMS Engineering College, Ghaziabad Data Handling using Oracle Data Guard by the Transfer of Log Sequence Rishi Mohan Awasthi 1, Rishi Kumar 2, Raghav Garg 3 1,2,3 B.Tech, Computer Science & Engineering, IMS Engineering College, Ghaziabad

More information

Expert Oracle GoldenGate

Expert Oracle GoldenGate Expert Oracle GoldenGate Ben Prusinski Steve Phillips Richard Chung Apress* Contents About the Authors About the Technical Reviewer Acknowledgments xvii xviii xix Chapter 1: Introduction...1 Distributed

More information

Exadata Implementation Strategy

Exadata Implementation Strategy BY UMAIR MANSOOB Who Am I Oracle Certified Administrator from Oracle 7 12c Exadata Certified Implementation Specialist since 2011 Oracle Database Performance Tuning Certified Expert Oracle Business Intelligence

More information

OTN Case Study: Amadeus Using Data Guard for Disaster Recovery & Rolling Upgrades

OTN Case Study: Amadeus Using Data Guard for Disaster Recovery & Rolling Upgrades OTN Case Study: Amadeus Using Data Guard for Disaster Recovery & Rolling Upgrades "We had already standardized on Oracle Data Guard for DR protection when we discovered additional ways to enhance overall

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

This presentation is for informational purposes only and may not be incorporated into a contract or agreement.

This presentation is for informational purposes only and may not be incorporated into a contract or agreement. This presentation is for informational purposes only and may not be incorporated into a contract or agreement. The following is intended to outline our general product direction. It is intended for information

More information

Database Level 100. Rohit Rahi November Copyright 2018, Oracle and/or its affiliates. All rights reserved.

Database Level 100. Rohit Rahi November Copyright 2018, Oracle and/or its affiliates. All rights reserved. Database Level 100 Rohit Rahi November 2018 1 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

Data Guard Maximum Availability

Data Guard Maximum Availability Data Guard Maximum Availability Outage / Resolution Matrix for Zero Data Loss Protection 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 8 Table of Contents Table of Contents 0 Introduction 1 Maximum

More information

You'll even like your Data Guard more with Flashback

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

More information

Maximize Availability on Private Clouds

Maximize Availability on Private Clouds Maximize Availability on Private Clouds No Time for Downtime? 2 Twenty Two Hour Outage Popular E-Commerce Site From Barron s Online their Web site has been down for hours. Around noon Pacific time, the

More information

Maximum Availability Architecture: Overview. An Oracle White Paper July 2002

Maximum Availability Architecture: Overview. An Oracle White Paper July 2002 Maximum Availability Architecture: Overview An Oracle White Paper July 2002 Maximum Availability Architecture: Overview Abstract...3 Introduction...3 Architecture Overview...4 Application Tier...5 Network

More information

Reasons to Deploy Oracle on EMC Symmetrix VMAX

Reasons to Deploy Oracle on EMC Symmetrix VMAX Enterprises are under growing urgency to optimize the efficiency of their Oracle databases. IT decision-makers and business leaders are constantly pushing the boundaries of their infrastructures and applications

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

Announcing Oracle Secure Backup 10.3: Fastest, Most Cost-Effective Oracle Backup

Announcing Oracle Secure Backup 10.3: Fastest, Most Cost-Effective Oracle Backup Announcing Oracle Secure Backup 10.3: Fastest, Most Cost-Effective Oracle Backup Donna Cooksey Principal Product Manager Richard McClain Senior Oracle DBA CSX Technology Program Agenda Introducing Oracle

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. Author & Presenter: Nassyam Basha Date: 27-FEB-2015

Data Guard. Author & Presenter: Nassyam Basha Date: 27-FEB-2015 Under The Hood of Active Data Guard Author & Presenter: Nassyam Basha Date: 27-FEB-2015 Nassyam Bashaa Post Graduation in computers from University of Madras Oracle Database Consultant @ Pythian Frequent

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

Best Practices for Disaster Recovery in Oracle Cloud Infrastructure ORACLE WHITE PAPER AUGUST 2018

Best Practices for Disaster Recovery in Oracle Cloud Infrastructure ORACLE WHITE PAPER AUGUST 2018 Best Practices for Disaster Recovery in Oracle Cloud Infrastructure ORACLE WHITE PAPER AUGUST 2018 Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

Oracle OpenWorld 14 Oracle Active Data Guard and Oracle GoldenGate High-Availability Best Practices

Oracle OpenWorld 14 Oracle Active Data Guard and Oracle GoldenGate High-Availability Best Practices Oracle OpenWorld 14 Oracle Active Data Guard and Oracle GoldenGate High-Availability Best Practices BG Garin, Stephan Haisley Enterprise Replication Server Technologies Oracle Corporation Safe Harbor Statement

More information

<Insert Picture Here> Exadata MAA Best Practices Series Session 1: E-Business Suite on Exadata

<Insert Picture Here> Exadata MAA Best Practices Series Session 1: E-Business Suite on Exadata Exadata MAA Best Practices Series Session 1: E-Business Suite on Exadata Richard Exley Ray Dutcher Richard Exley, Ray Dutcher Oracle Applications, Exadata and MAA Best Practices Exadata

More information

Moving Databases to Oracle Cloud: Performance Best Practices

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

More information

Physical Standby Design concepts and practices. Dresdner-Cetelem Kreditbank, 1. Februar 2010, Seite 1

Physical Standby Design concepts and practices. Dresdner-Cetelem Kreditbank, 1. Februar 2010, Seite 1 Physical Standby Design concepts and practices Dresdner-Cetelem Kreditbank, 1. Februar 2010, Seite 1 1 Topics DataGuard architecture overview DataGuard Protection Modes and possible data loss DataGuard

More information

Key Features. High-performance data replication. Optimized for Oracle Cloud. High Performance Parallel Delivery for all targets

Key Features. High-performance data replication. Optimized for Oracle Cloud. High Performance Parallel Delivery for all targets To succeed in today s competitive environment, you need real-time information. This requires a platform that can unite information from disparate systems across your enterprise without compromising availability

More information

Zero Data Loss Recovery Appliance: Deep Dive and Best Practices from Development

Zero Data Loss Recovery Appliance: Deep Dive and Best Practices from Development Zero Data Loss Recovery Appliance: Deep Dive and Best Practices from Development CON6679 Kelly Smith, Sr. Principal Product Manager, Oracle Jony Safi, Consulting Member of Technical Staff, Oracle Gabriel

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

Minimal downtime migration

Minimal downtime migration Minimal downtime migration Mitigate the risk that a planned downtime becomes unplanned Johannes Ahrends Technical Director ADM Presales Quest Software GmbH Copyright 2006 Quest Software Agenda Quest Software

More information

ZDLRA implementation at CFM

ZDLRA implementation at CFM October 04, 2017 ZDLRA implementation at CFM Presented by Gabriel Nitulescu Project Leader CFM 2017 www.cfm.fr www.cfm.fr Who Are We? Fundamental research applied to financial markets CFM invests in Science,

More information

<Insert Picture Here> Exadata MAA Best Practices Series Session 6: Migrating to Exadata

<Insert Picture Here> Exadata MAA Best Practices Series Session 6: Migrating to Exadata Exadata MAA Best Practices Series Session 6: Migrating to Exadata Doug Utzig Doug Utzig Exadata and MAA Best Practices Exadata MAA Best Practices Series 1. E-Business Suite on Exadata

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

Oracle Zero Data Loss Recovery Appliance (ZDLRA)

Oracle Zero Data Loss Recovery Appliance (ZDLRA) Oracle Zero Data Loss Recovery Appliance (ZDLRA) Overview Attila Mester Principal Sales Consultant Data Protection Copyright 2015, Oracle and/or its affiliates. All rights reserved. Safe Harbor Statement

More information

ORACLE STANDBY LICENSING OPERATING INSTRUCTIONS EBOOK

ORACLE STANDBY LICENSING OPERATING INSTRUCTIONS EBOOK 14 November, 2017 ORACLE STANDBY LICENSING OPERATING INSTRUCTIONS EBOOK Document Filetype: PDF 538.91 KB 0 ORACLE STANDBY LICENSING OPERATING INSTRUCTIONS EBOOK Based on Ch14-Page15 of the Streams manual.

More information

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

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any

More information

Speeding Oracle Database Replication with F5 WAN Optimization Technologies

Speeding Oracle Database Replication with F5 WAN Optimization Technologies Speeding Oracle Database Replication with F5 WAN Optimization Technologies Efficient replication is vital to protect business data and maintain high network availability and responsiveness for users. By

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 Zero Data Loss Recovery Appliance

Oracle Zero Data Loss Recovery Appliance Oracle Zero Data Loss Recovery Appliance Dave Robbins Senior Solutions Consultant Backup and Recovery Safe Harbor Statement The following is intended to outline our general product direction. It is intended

More information

enterprise professional expertise distilled Implementer's guide Oracle GoldenGate 11g

enterprise professional expertise distilled Implementer's guide Oracle GoldenGate 11g Oracle GoldenGate 11g Implementer's guide Design, install, and configure high-performance data replication solutions using Oracle GoldenGate John P. Jeffries PUBLISHING enterprise professional expertise

More information

August Oracle - GoldenGate Statement of Direction

August Oracle - GoldenGate Statement of Direction August 2015 Oracle - GoldenGate Statement of Direction Disclaimer This document in any form, software or printed matter, contains proprietary information that is the exclusive property of Oracle. Your

More information

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

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

More information

Oracle Advanced Compression: Reduce Storage, Reduce Costs, Increase Performance Bill Hodak Principal Product Manager

Oracle Advanced Compression: Reduce Storage, Reduce Costs, Increase Performance Bill Hodak Principal Product Manager Oracle Advanced : Reduce Storage, Reduce Costs, Increase Performance Bill Hodak Principal Product Manager The following is intended to outline our general product direction. It is intended for information

More information

PPL Automatic Failover Data Guard 10g Release 2 High Availability & Disaster Recovery

PPL Automatic Failover Data Guard 10g Release 2 High Availability & Disaster Recovery PPL Automatic Failover Data Guard 10g Release 2 High Availability & Disaster Recovery Data Guard Fast-Start Failover provides simple, fast, unattended failover for an outage management system that PPL

More information

Disaster Recovery Solutions for Oracle Database Standard Edition RAC. A Dbvisit White Paper By Anton Els

Disaster Recovery Solutions for Oracle Database Standard Edition RAC. A Dbvisit White Paper By Anton Els Disaster Recovery Solutions for Oracle Database Standard Edition RAC A Dbvisit White Paper By Anton Els Copyright 2017 Dbvisit Software Limited. All Rights Reserved V3, Oct 2017 Contents Executive Summary...

More information