Oracle Active Data Guard - Overview

Size: px
Start display at page:

Download "Oracle Active Data Guard - Overview"

Transcription

1 <Insert Picture Here> Oracle Active Data Guard - Overview Greg Walters Sr. Technology Sales Consultant INOUG April 28, 2011 Copyright 2011, Oracle Corporation and/or its affiliates

2 Agenda Oracle Database High Availability Data Guard Overview Active Data Guard Details Customer Deployments Summary & Resources 2

3 Traditional High Availability Expensive, Idle Redundancy Idle Failover Server Production Server Redundant systems & storage Impossible to know if it all works until you try to failover 3rd party cold failover cluster Idle Disaster Recovery Systems 3rd party remote mirroring 3rd party backup software Storage Array 3rd party volume manager and file system Matching Storage Array 3

4 Oracle s HA Design Principles Complete Minimize all planned and unplanned downtime Offer a standard validated platform for maximum availability Application oriented Protect and recover application objects Enable online application changes Scale-out model Low-cost commodity hardware All components active in a grid infrastructure Integrated and simple Built-in HA with pluggable components Automatic - eliminate manual processes 4

5 Oracle Maximum Availability Architecture Low-cost, Integrated, Fully Active, High ROI Oracle Real Application Clusters Oracle Secure Backup Oracle Active Data Guard Data Guard Automatic Storage Management Oracle Recovery Manager - Fast Recovery Area 5

6 Oracle Maximum Availability Architecture Eliminate Planned Downtime Undo Human Error Online Application Upgrades Real Application Testing Online Database Changes Add/Remove Servers and Storage Database Rolling Upgrades 6

7 Jon Waldron Executive Architect Commonwealth Bank of Australia High availability is absolutely essential for us we now use Oracle RAC for instance failover, Data Guard for site failover, ASM to manage our storage, and Oracle Clusterware to hang the whole thing together Oracle Corporation 7

8 Agenda Oracle Database High Availability Data Guard Overview Active Data Guard Details Customer Deployments Summary & Resources 8

9 What is Oracle Data Guard? Best Data Protection and Availability for Oracle Databases Primary Site Data Guard Standby Site Data Guard SYNC / ASYNC Physical or Logical Standby Database Primary Database Data Guard Broker 9

10 Data Guard Architecture Simple, Integrated, Reliable, Fast Primary Database Remote Replica 1 Oracle Instance SYNC or ASYNC Oracle Instance 3 2 Oracle Data files Recovery data Automatic outage resolution 4 Oracle Data files Recovery data 10

11 Data Guard Redo Apply Rate Extreme Performance on Exadata Two Terabytes/hour 11

12 Data Guard Essential for High Availability Data Guard Capabilities 1. Built-in Oracle integration: ensures transactional consistency 2. Extremely high performance 3. Transparent operation, supports all Oracle features and data types 4. Application-integrated failover 5. Combined HA/DR solution LAN & MAN deployments provide Local HA and DR 6. Loosely coupled architecture: ensures fault isolation 7. Protection from data corruptions 8. Ensures zero data loss 9. DR servers can be utilized for testing while providing DR 10.Addresses both planned and unplanned downtime 11.No vendor lock-in for storage Extend to a Wide Area Network and add remote DR 12.Minimal network consumption 13.No distance limitation 12

13 Agenda Oracle Database High Availability Data Guard Overview Active Data Guard Details Customer Deployments Summary & Resources 13

14 Data Guard Standby Database: Failover Target Real-time Reporting Read-write Workload Fast Incremental Backups Continuous redo shipping, validation & apply Production Database Physical Standby Database 14

15 Active Data Guard Standby Database: Offload Production + Failover Target Read-write Workload Real-time Reporting Fast Incremental Backups Continuous redo shipping, validation & apply Production Database Active Standby Database (physical standby open read-only) 15

16 Sue Merrigan Director, Information Management Intermap Technologies Oracle Active Data Guard was a quick win. We easily dualpurposed our ten terabyte standby database for both disaster protection and for secure read-only access to our public-facing ecommerce applications Oracle Corporation 16

17 Active Data Guard Use Examples Education Report student grades, campus directory, course catalogs, Financial View past transactions, market prices, archived statements, Healthcare Access medical records, search doctors, facilities, Legal Access legal reports, trial histories, jury verdicts, Telecommunications View usage history, unused minutes, billing rates, Transportation Track packages, view delivery rates, Web-business Browse catalogs, web downloads, enquire order status, Bottom Line Most businesses require significant number of read-only operations Use Active Data Guard to: Offload these operations to physical standbys, and thus Unlock additional processing power of the production database 17

18 Active Data Guard Reader Farms Unlimited Read Scalability, with DR Queries Updates Scalable Reader Farm Queries Queries Queries Production Database Up to 30 active standby databases Flexible options to scale read performance Add more single-node active standby databases, or Scale an active standby database using Oracle RAC 18

19 Active Data Guard - Scale all Workloads Utilize Primary and Standby Databases Transactions / sec Double read-write throughput R/O R/W 2,610 standby 1, Primary Only Increase read-only throughput by 70% Eliminate contention between read-write and read-only workload primary Primary and Standby Simplify performance tuning 19

20 Data Guard vs. Active Data Guard Zero Impact to Recovery Time Objective (RTO) Data Guard 11g Active Data Guard 11g Stop redo apply at 8am Open read-only for queries Redo apply is always on Always open read only By 4pm, data on physical standby is 8 hours old Queries and reports always see latest data Any failover will be delayed due to backlog of data that must be applied Failover is immediate when needed, standby database always up-to-date 20

21 Maintain Recovery Time Objective Even at Very High Recovery Rates No significant performance impact on redo apply when apply instance is simultaneously open read-only 21

22 Enabling Active Data Guard Using SQL*Plus If physical standby database is shutdown Open database read-only and start redo apply SQL> STARTUP; SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE 2 USING CURRENT LOGFILE DISCONNECT; If Redo Apply is running Stop redo apply, open database read-only, restart redo apply SQL> 2 SQL> SQL> 2 ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL; ALTER DATABASE OPEN READ ONLY; ALTER DATABASE RECOVER MANAGED STANDBY DATABASE USING CURRENT LOGFILE DISCONNECT; 22

23 Enabling Active Data Guard Using Data Guard Broker Oracle Database 11g Release 1 DGMGRL> edit database ADG set state= apply-off ; SQL> alter database open read only; DGMGRL> edit database ADG set state= apply-on ; Oracle Database 11g Release 2 SQL> alter database open read only; The Broker will automatically stop Redo Apply and the restart it after the open has completed 23

24 Confirming Active Data Guard is Enabled Verify whether physical standby open read-only and Redo Apply is running: SQL> SELECT OPEN_MODE FROM V$DATABASE; OPEN_MODE READ ONLY WITH APPLY Oracle Database 11g Release 2 24

25 Determining Query Latency Manually Monitor and Respond to Apply Lag Query V$DATAGUARD_STATS to calculate lag SQL> SELECT name, value, datum_time, time_computed 2 FROM V$DATAGUARD_STATS WHERE name like 'apply lag'; NAME VALUE DATUM_TIME TIME_COMPUTED apply lag :00:00 09/25/ :14:11 09/25/ :14:11 New 11.2 V$STANDBY_EVENT_HISTOGRAM view SQL> SELECT * FROM V$STANDBY_EVENT_HISTOGRAM 2 WHERE NAME = 'apply lag' AND COUNT > 0; NAME TIME UNIT COUNT LAST_TIME_UPDATED apply lag 0 seconds /25/ :20:02 apply lag 1 seconds /25/ :15:09 apply lag 2 seconds 16 09/25/ :20:58 apply lag 3 seconds 4 09/25/ :15:56 25

26 Active Data Guard Query SLA Automatically Monitor and Respond to Apply Lag Pre-configure the maximum apply lag allowed Data Guard automatically enforces the limit you set Query receives error if apply lag exceeds SLA Applications can be coded to redirect query to primary database to satisfy SLA Read/Write Workload Primary Database Real-time Reporting Continuous redo shipping, validation & apply Active Standby Database Oracle Database 11g Release 2 26

27 Query SLA Options Session setting: STANDBY_MAX_DATA_DELAY NONE: queries will be executed regardless of apply lag (Default) Non-zero (seconds): queries will be executed only if the apply lag is less than or equal to STANDBY_MAX_DATA_DELAY. If delay setting exceeded an error is returned ORA-03172: STANDBY_MAX_DATA_DELAY of 2 seconds exceeded Application then decides what to do. Zero: queries guaranteed to return the exact same result as if the query were issued on the primary database, otherwise the error ORA is returned Requires Maximum Availability and Real-Time Apply 27

28 Enabling an SLA Use a logon trigger to set the maximum delay whenever a user logs into the standby SQL> connect sys/oracle@prod as sysdba Connected. SQL> CREATE OR REPLACE TRIGGER hr_logon_set_sla_trigger 2 AFTER LOGON ON hr.schema 3 BEGIN 4 IF (SYS_CONTEXT('USERENV','DATABASE_ROLE') 5 IN ('PHYSICAL STANDBY')) 6 THEN 7 execute immediate ALTER SESSION SET STANDBY_MAX_DATA_DELAY=2; 8 END IF; 9 END; 10 / Trigger created. 28

29 Routing User Connections Role Transitions Switchover or failover At the Active Data Guard standby (new primary) User connections to read-only services are disconnected Read-write services appropriate to primary role are enabled automatically when standby becomes primary Any services not appropriate for primary role are stopped Clients connect to primary services At the new Active Data Guard standby (old primary) Read-only services are enabled automatically Clients connect to read-only services Simplified using role-based database services New in Oracle Database 11g Release 2 Replaces triggers used to start/stop services in previous releases Requires Data Guard Broker 29

30 Applications & Active Data Guard Pure Read-Only Application Model Real-time Queries selects Production Database Physical Standby Database Application directs read-only access to the standby 30

31 Applications & Active Data Guard Three Read-Mostly Application Models Real-time Queries DML 1 Selects / DML 2 Production Database DML via DBlink 3 DML via DBlink Physical Standby Database 1. Application redirects writes to primary 2. Writes redirected to primary via database link 3. Writes redirected to a separate database via a database link 31

32 Creating DBlinks for the Standby DBlinks used by the standby to redirect writes to the primary, are created on the primary and propagated to the standby via redo On the Primary SQL> CREATE DATABASE LINK sales_prmy USING sales_rw'; On the standby SQL> insert into values (999,'SMITH','GEEK',999,sysdate,1,0); SQL> commit; SQL> select * from emp where empno=999; EMPNO ENAME JOB MGR HIREDATE GEEK OCT-07 SAL COMM SMITH 32

33 Active Data Guard Auto Block Repair High Availability by Repairing Corruptions Online Automatic Block Repair When Oracle detects corrupt blocks at the primary database, it will repair online by copying the good version from an active standby database (and vice versa) Transparent to the user and application Read/Write Workload Real-time Reporting Continuous redo shipping, validation & apply Primary Database Active Standby Database Oracle Database 11g Release 2 33

34 Active Standby Performance Statistics Standby statspack in Oracle Database 11g Uses DBlink to write back to the primary database Create stdbyperf user on primary Add standby databases and instances Execute snaps Generate reports Requires perfstat user and statspack installation See Support Note In-memory Active Session History (ASH) support for real-time stats for Active Standby Database Included in Oracle Database 11g Release 2 Available via back port for Oracle Database

35 Agenda Oracle Database High Availability Data Guard Overview Active Data Guard Details Customer Deployments Summary & Resources 35

36 Amazon.com High Availability Integrated with Disaster Recovery With Data Guard HA/DR Database failover: 20 secs Apps redirected: 2 mins Standby site distance: 15 miles Before Data Guard Data Guard Automatic Failover 36

37 Intermap Technologies Inc. Active Data Guard - Secure Access to Real-time Data Use Active Data Guard to offload public Internet access to high-res 3D digital data - Auto Safety & Fuel Efficiency - Insurance Flood Modeling - Global Positioning Systems - Environmental Planning - Wireless Communications Real-time data synchronization through Data Guard Ingest geo-spatial data 10 TB Primary Database With Active Data Guard 11g 10 TB Active Data Guard Standby Database Better performance Secured Internet access 24x7 - standby always up-to-date Quick win! Easy to implement Utilize existing DR system 37

38 Apple Inc Reader Farm Scale Out using Active Data Guard Primary Database ADG 1 ADG 2 SYNC ASYNC ADG 3 ADG 8 ADG 9 L o a d App 1 B a l a n c e r App 3 App 2 App n Data Guard Standby Database (Max Availability Mode) Oracle Database 11g Release 1 38

39 MorphoTrak Cut $100,000 in System Cost with Active Data Guard Site A Read-write transactions Primary Database 2-node RAC Oracle Site B Read-only transactions Data Guard Maximum Availability - SYNC Zero data loss - automatic database failover Printrak Biometrics Identification 15 Terabyte database Mixed OLTP read intensive Active Data Guard Standby Database Read-only transactions directed to active standby Full utilization reduces acquisition cost Simpler deployment reduces admin cost 39

40 Agenda Oracle Database High Availability Data Guard Overview Active Data Guard Details Customer Deployments Summary & Resources 40

41 Summary Validating Oracle s HA Design Principles 1. Complete A validated next-generation platform 2. Application oriented Integrated application failover, online application changes 3. Scale-out model Basis of Oracle s grid infrastructure 4. Integrated and simple Database with built-in HA capabilities 41

42 Resources: HA & Active Data Guard Best Practices, Oracle Tools and Applications Maximum Availability Architecture (MAA) Active Data Guard Best Practices OpenWorld 2009: Oracle Active Data Guard Best Practices Active Data Guard Hands-On Lab Oracle Business Intelligence Enterprise Edition Offload queries to active standby Oracle TopLink Applications Easily retrofit TopLink Applications to utilize an active standby PeopleSoft and E-Business Suite Applications Transparently redirect read-only queries/reports to active standby planned for future release Prototypes demonstrated at OpenWorld

43 Questions

44 Appendix GoldenGate vis-a-vis Active Data Guard Data Guard vis-à-vis Storage Remote-Mirroring 44

45 Oracle GoldenGate The Oracle Solution for Information Integration Best-in-class real-time data replication Real-time information Flexible solution for minimal/zero downtime upgrades and migrations Over 500 customers with 4,000+ implementations Real-time Access 45

46 High Availability for Oracle Database When to Use Active Data Guard vs. GoldenGate Disaster Recovery / Data Protection Active Data Guard: simple full Oracle Database protection High-performance, simple, drop-in solution for HA and DR, readable at standby Zero data loss, integrated data corruption protection, switchover / failover DR for all data types & apps including packaged apps that can t be changed Information Distribution, Flexible HA GoldenGate: heterogeneous, active-active, migrations Heterogeneous replication, transformations, subsetting, multiple topologies All sites fully active (read/write): avoid or manage conflicts at application level Enable minimal downtime app migrations with 2nd database copy 46

47 Complementary Technologies DR, Production Offload, Heterogeneous Replication Read-write Transactions Production Database Active Data Guard Read-only Workload Data Guard Standby (GoldenGate Source*) Capture Source Trail Target Trail Delivery GoldenGate Targets * GoldenGate archive log mode (ALO) 47

48 Complementary Technologies New Environment Old Environment Minimizing Planned Downtime Active Data Guard - continuous redo shipping, validation & apply Old Production Database Data Guard Standby Database (GoldenGate Source*) GoldenGate Heterogeneous Replication (sync prior to cutover) Capture Source Trail Target Trail Delivery Data Guard - continuous redo shipping, validation & apply Data Guard Standby Database New Production Database * GoldenGate archive log mode (ALO) 48

49 Storage Remote-Mirroring Production DBMS Control Files Online Logs fil Archive Logs Updates Network I/O Standby Files Control Files Online Logs fil Archive Logs Flashback Logs Flashback Logs Data Files Data Files SYSTEM USER TEMP UNDO SYSTEM USER TEMP UNDO 49

50 Data Guard Database-Aware Transport and Apply Production DBMS Control Files Online Logs fil Archive Logs Updates Flashback Logs Data Files Standby DBMS Network I/O Oracle apply Oracle validation 7X less volume* 27X fewer network I/Os* SYSTEM USER TEMP UNDO * 50

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

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

Active Data Guard Hands On Lab. Larry M. Carpenter Distinguished Product Manager

Active Data Guard Hands On Lab. Larry M. Carpenter Distinguished Product Manager Active Data Guard Hands On Lab Larry M. Carpenter Distinguished Product Manager Page 2 of 64 Active Data Guard Hands On Lab Oracle Database 11g Release 2 Maximum Availability Architecture (MAA) Oracle

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

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

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

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

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

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

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

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

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

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

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

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

High Performance Oracle Database in a Flash Sumeet Bansal, Principal Solutions Architect

High Performance Oracle Database in a Flash Sumeet Bansal, Principal Solutions Architect High Performance Oracle Database in a Flash Sumeet Bansal, Principal Solutions Architect WHY USE NAND FLASH Overcome traditional I/O bottlenecks Create simpler architectures Save on energy costs Drive

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

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

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

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

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

Maximum Availability Architecture

Maximum Availability Architecture Deploying an Oracle PeopleSoft Maximum Availability Architecture Oracle Maximum Availability Architecture White Paper February 2011 Maximum Availability Architecture Oracle Best Practices For High Availability

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

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

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

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

<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

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

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

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

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

<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

Oracle Database 11g: RAC Administration Release 2 NEW

Oracle Database 11g: RAC Administration Release 2 NEW Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 4108 4709 Oracle Database 11g: RAC Administration Release 2 NEW Duration: 4 Days What you will learn This Oracle Database 11g: RAC Administration

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

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

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

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

Zero Downtime Migrations

Zero Downtime Migrations Zero Downtime Migrations Chris Lawless I Dbvisit Replicate Product Manager Agenda Why migrate? Old vs New method Architecture Considerations on migrating Sample migration Q & A Replication: Two types Physical

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

Maximum Availability Architecture. Oracle Best Practices For High Availability

Maximum Availability Architecture. Oracle Best Practices For High Availability Oracle Database 10g Release 2: Roadmap to Maximum Availability Architecture Oracle Maximum Availability Architecture White Paper April 2006 Maximum Availability Architecture Oracle Best Practices For High

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

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

Eliminating Downtime When Migrating or Upgrading to Oracle 10g

Eliminating Downtime When Migrating or Upgrading to Oracle 10g Transactional Data Management Solutions December 13, 2005 NYOUG Eliminating Downtime When Migrating or Upgrading to Oracle 10g Agenda GoldenGate Overview What is Transactional Data Management? Why Migrate/Upgrade

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

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

<Insert Picture Here> Oracle MAA und RAC Best Practices und Engineered Systems

<Insert Picture Here> Oracle MAA und RAC Best Practices und Engineered Systems Oracle MAA und RAC Best Practices und Engineered Systems Jörg Eggelsmann joerg.eggelsmann@oracle.com Leitender Systemberater 0177 5943 142 STCC Nord DB Agenda Maximum Availability

More information

High Availability Scenarios for Oracle Databases on IBM z Systems

High Availability Scenarios for Oracle Databases on IBM z Systems High Availability Scenarios for Oracle Databases on IBM z Systems Sam Amsavelu Oracle on z Architect IBM ISV & Channels Technical Sales Oracle samvelu@us.ibm.com 29 th Annual International Oracle on IBM

More information

Oracle Real Application Clusters One Node

Oracle Real Application Clusters One Node Oracle Real Application Clusters One Node Better Virtualization for Databases Bob Thome, Oracle Grid Development Agenda Overview Comparison with VMs and other failover solutions Pricing

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

Data Guard: Additional Benefits apart from DR

Data Guard: Additional Benefits apart from DR Data Guard: Additional Benefits apart from DR Uwe Hesse Senior Principal Instructor OU Oracle Certified Master http://uhesse.com/about What is Active Data Guard? Option for Oracle Database 11g Enterprise

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

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

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

Storage Optimization with Oracle Database 11g

Storage Optimization with Oracle Database 11g Storage Optimization with Oracle Database 11g Terabytes of Data Reduce Storage Costs by Factor of 10x Data Growth Continues to Outpace Budget Growth Rate of Database Growth 1000 800 600 400 200 1998 2000

More information

Oracle - Oracle Database 12c: OCM Exam Preparation Workshop Ed 1

Oracle - Oracle Database 12c: OCM Exam Preparation Workshop Ed 1 Oracle - Oracle Database 12c: OCM Exam Preparation Workshop Ed 1 Code: Lengt h: URL: D94327GC10 5 days View Online The Oracle Database 12c: OCM Exam Preparation Workshop is designed for those candidates

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

High Availability Infrastructure for Cloud Computing

High Availability Infrastructure for Cloud Computing High Availability Infrastructure for Cloud Computing Oracle Technology Network Architect Day Reston, VA, May 16, 2012 Kai Yu Oracle Solutions Engineering Lab Enterprise Solutions Engineering, Dell Inc.

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

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

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

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

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

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

More information

Case Study: Active-Active Solutions using Oracle Data Guard. Aris Prassinos Chief Engineer MorphoTrak

Case Study: Active-Active Solutions using Oracle Data Guard. Aris Prassinos Chief Engineer MorphoTrak Case Study: Active-Active Solutions using Oracle Data Guard Aris Prassinos Chief Engineer MorphoTrak 1 Introduction This case study discusses MorphoTrak s experiences using Oracle Active Data Guard as

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

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

<Insert Picture Here> Enterprise Data Management using Grid Technology

<Insert Picture Here> Enterprise Data Management using Grid Technology Enterprise Data using Grid Technology Kriangsak Tiawsirisup Sales Consulting Manager Oracle Corporation (Thailand) 3 Related Data Centre Trends. Service Oriented Architecture Flexibility

More information

MySQL HA Solutions Selecting the best approach to protect access to your data

MySQL HA Solutions Selecting the best approach to protect access to your data MySQL HA Solutions Selecting the best approach to protect access to your data Sastry Vedantam sastry.vedantam@oracle.com February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved

More information

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 What you will learn In this intensive course, students will learn about the Oracle Grid Infrastructure products. This includes

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

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

Oracle Real Application Clusters Handbook

Oracle Real Application Clusters Handbook ORACLE Oracle Press Oracle Database 11 g Oracle Real Application Clusters Handbook Second Edition K Copalakrishnan Mc Gnaw Hill McGraw-Hill New York Chicago San Francisco Lisbon London Madrid Mexico City

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

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

Copyright 2018, Oracle and/or its affiliates. All rights reserved. Maximum Availability Architecture Best Practices for the Cloud Markus Michalewicz, Senior Director of Product Management Sebastian Solbach, Consulting Member of Technical Staff October 25, 2018 Safe Harbor

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

Floating on a Hybrid Cloud: SQL Server 2014 & Microsoft Azure Timothy P. McAliley Microsoft Premier Field Engineer SQL Server May 8, 2014

Floating on a Hybrid Cloud: SQL Server 2014 & Microsoft Azure Timothy P. McAliley Microsoft Premier Field Engineer SQL Server May 8, 2014 Floating on a Hybrid Cloud: SQL Server 2014 & Microsoft Azure Timothy P. McAliley Microsoft Premier Field Engineer SQL Server May 8, 2014 Agenda 1 Speaker Intro Timothy McAliley 2 Hybrid cloud solutions

More information

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 Oracle University Contact Us: 0845 777 7711 Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 Duration: 5 Days What you will learn In this intensive course, you'll learn about

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

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

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

How To Make Databases on Linux on System z Highly Available

How To Make Databases on Linux on System z Highly Available How To Make Databases on Linux on System z Highly Available Mike Friesenegger (mikef@suse.com) SUSE Wednesday, August 14, 2013 Session Number 13437 Agenda Clarify the term "Availability" What is High Availability

More information

Oracle Data Guard OTN Case Study: VP BANK

Oracle Data Guard OTN Case Study: VP BANK Oracle Data Guard OTN Case Study: VP BANK OVERVIEW Corporate Profile A leader in private banking for wealthy private clients $21 billion (US) in assets under management. http://www.vpbank.com Disaster

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

SQL Server Virtualization 201

SQL Server Virtualization 201 Virtualization 201 Management and Risk Mitigation PASS Virtualization Virtual Chapter 2014.05.15 About David Klee @kleegeek davidklee.net gplus.to/kleegeek linked.com/a/davidaklee Specialties / Focus Areas

More information

HIGH-AVAILABILITY & D/R OPTIONS FOR MICROSOFT SQL SERVER

HIGH-AVAILABILITY & D/R OPTIONS FOR MICROSOFT SQL SERVER SQL SATURDAY # 91 - OMAHA HIGH-AVAILABILITY & D/R OPTIONS FOR MICROSOFT SQL SERVER 8/27/11 Tim Plas, Virteva tim.plas@virteva.com 1 The Presenter Tim Plas, Principal Consultant at Virteva (Mpls) Operational

More information

An Insider s Guide to Oracle Autonomous Transaction Processing

An Insider s Guide to Oracle Autonomous Transaction Processing An Insider s Guide to Oracle Autonomous Transaction Processing Maria Colgan Master Product Manager Troy Anthony Senior Director, Product Management #thinkautonomous Autonomous Database Traditionally each

More information

ORACLE RAC DBA COURSE CONTENT

ORACLE RAC DBA COURSE CONTENT ORACLE RAC DBA COURSE CONTENT Course Objectives Understand Oracle Clusterware architecture Describe how Grid Plug and Play affects Clusterware Describe Automatic Storage Management (ASM) architecture Perform

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