Mike Hughes Allstate Oracle Tech Lead, Oracle Performance DBA

Size: px
Start display at page:

Download "Mike Hughes Allstate Oracle Tech Lead, Oracle Performance DBA"

Transcription

1 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 Allstate Oracle Tech Lead, Oracle Performance DBA 1

2 Legacy ConversionOracle MAA at Allstate Insurance Co. Legacy Application Conversion (Next Gen) RTO/RPO HA Options and Considerations Oracle RAC Extended Distance Clusters Data Guard / Replication Options Chosen Architecture Outages and Upgrades ODP and HA Closing thoughts 2

3 Business Critical Claims Applications Consolidation and Integration 70+ claims apps scattered across several DB2 and SQL Server databases Multiple data and application integration opportunities 3

4 What is Next Gen? Legacy Claim system replacement Started in 2004 Phased approach across all Insurance Lines/States Over 500 people involved including 75 architects New Functionality - Operational Reporting NextGen 4

5 Next Gen Database Goals NextGen Near 24x7 availability Rolling upgrade capability Local and remote resiliency Protection from software corruption Remote copy of the database for DR 5

6 Operational Reporting What is Ops Reporting? Critical reporting component used for Next Gen Uses Crystal Reporting infrastructure Mainly used by front line management and leaders Current Activities Benchmarking and monitoring existing reports Tuning reporting queries and views Researching denormalization, partitioning, and performance options Reclassifying reports and where they should run Goals Data that is being reporting on should be within 20 minutes of current 6

7 RTO/RPO Oracle MAA at Allstate Insurance Co. Legacy Application Conversion (Next Gen) ** RTO/RPO HA Options and Considerations Oracle RAC Extended Distance Clusters Data Guard / Replication Options Chosen Architecture Outages and Upgrades ODP and HA Closing thoughts 7

8 RPO Recovery Point Objective RPO is the maximum acceptable level of data loss following an unplanned event. The RPO represents the point in time, prior to such an event, to which lost data can be recovered. Expressed backward in time Important consideration in resiliency and disaster recovery planning (DRP) Helps determine frequency of backups Helps DBAs choose optimal disaster recovery (DR) technology and procedures 8

9 RTO Recovery Time Objective RTO is the maximum tolerable length of time that your app can be down after a failure or disaster occurs. Potential revenue loss per unit of time during the disaster Disruption of normal operations Impacts the selection of recovery technology 9

10 HA Options Oracle MAA at Allstate Insurance Co. Legacy Application Conversion (Next Gen) RTO/RPO HA Options and Considerations Oracle RAC Extended Distance Clusters Data Guard / Replication Options Chosen Architecture Outages and Upgrades ODP and HA Closing thoughts 10

11 High Availability Options Oracle RAC Oracle RAC on extended distance clusters Oracle Data Guard 11

12 HA Option #1 - Oracle RAC Workload Manager (10g Services) Server 1 Server 2 Server 3 Server 4 Oracle ORA1 Oracle ORA1 Oracle ORA1 Oracle ORA1 Application A Application A Application B Application A Application B Application B Server 1 Fails Appl A Shared Storage Appl B If a server fails, the work running on that server moves to surviving servers 12

13 RAC Concepts Workload Management Workload Manager (10g Services) Server 1 Server 2 Server n Oracle ORA1 Oracle - ORA2 Oracle - ORAn Application A Application B Application A Application B... Application A Application B Appl A Shared Storage Appl B All servers have access to all databases (Read and Update) Any application, anywhere 13

14 RAC Cost / Benefits Workload Manager (10g Services) Server 1 Server 2 Server n Oracle ORA1 Application A Oracle - ORA2 Application A... Oracle - ORAn Application A Application B Application B Application B Appl A Shared Storage Appl B Benefits Scalability Horizontal Growth Redundancy / Failover Workload management Costs Overhead (CPU, elapsed time) Licensing Administration, patching Rolling upgrade capabilities 14

15 HA Option #2 - Extended Distance Clusters Location 1 Location 2 Server 1 Server 2 Dedicated Dark Fiber Server 3 Server 4 Oracle Oracle Max 25 km between sites Oracle Oracle Dictionary User Data Disk Mirroring Dictionary User Data 15

16 Extended Distance Clusters - Costs/Benefits Server 1 Oracle Dedicated Dark Fiber Max 25 km between sites Server 2 Oracle Dictionary User Data Disk Mirroring Dictionary User Data Benefits Inter-site HA Fully Active Active for complete resource utilization Costs Performance overhead due to network latency Direct cabling is very expensive Vulnerable to mirrored corruptions causing data loss and downtime 16

17 HA Option #3 - Oracle Data Guard Location 1 Location 2 Server 1 Server 2 LAN or WAN TCP/IP Server 3 Server 4 Oracle Oracle Data Guard Continuous Redo Shipment and Apply Oracle Oracle Dictionary User Data Dictionary User Data Redo data transmitted from primary to one or more standby locations Choice of synchronized physical or logical standby database Fast failover/switchover of production to standby site Standby databases support reporting, testing, and rolling upgrades 17

18 Oracle Data Guard Benefits Location 1 Server 1 Server 2 LAN or WAN TCP/IP Location 2 Server 3 Server 4 Oracle Oracle Data Guard Continuous Redo Shipment and Apply Oracle Oracle Dictionary User Data Dictionary User Data Benefits HA/DR without distance limits Optimum data protection Reduce unplanned downtime Reduce planned downtime Standby supports reporting No production overhead. Standard hardware components Costs Logical Standby database is not completely active, read-only access, no updates/inserts/deletes Physical Standby can not be used for up-to-date reporting (10g) Additional hardware cost for standby servers compared to extended distance cluster 18

19 Data Guard Asynchronous Redo Transport DML DML DML LOG Online Redo Log/s RLB RLB SCHEMAS Oracle Primary Site Redo data read/shipped from online logs Commit is immediately acknowledged to the application set init.ora parm log_archive_dest_n to LGWR ASYNC Transport services common to all Data Guard standbys Redo Stream NETWORK 19

20 Hot Swappable - Data Guard Physical Standby R U R U R U R U R Site 1... Redo Stream Apply Redo Apply Redo Redo Apply... Site 2 Pros Fast and Efficient Easy to setup and maintain No data type limitations Protection from hardware corruption Few if any issues Cons Not open for reads (until 11g) Limited protection from software corruption Not able to perform rolling upgrades (until 11g) 20

21 Active / Active(RO) - Data Guard Logical Standby R U R U R U R U R R R R R R Site 1... SQL Statements... Site 2 Redo Stream SQL Apply Pros Protection from software corruption Standby open for reads during apply Supports rolling database upgrades Can create additional indexes, mv s, and denormalized tables. Cons Workload profile impacts standby apply performance Logical copy, not physical replica Data type restrictions 21

22 Data Guard SQL Apply Process (logical standby) Redo From Primary Shared Pool Reader Undo Records Preparer LCR LCR LCR LCR.. Ungrouped LCRs Builder Transaction Groups Applier Coordinator Analyzer SQL DB Datafiles 22

23 Data Guard SQL Apply Bulk Updates TABLE: PERSON Col: STATE Col: ZIP IL IL IL IA UPDATE PERSEON SET STATE = AL WHERE STATE = IL ; COMMIT; Before: State IL, Key Mike After: State AL, Key Mike Before: State IL, Key Matt After: State AL Key Matt Before: State IL Key Mark After: State AL Key Mark Col: NM MIKE MATT MARK MARY Statements run on the logical Update PERSON SET STATE = AL WHERE NM = MIKE ; Update PERSON SET STATE = AL WHERE NM = MATT ; Update PERSON SET STATE = AL WHERE NM = MARK ; COMMIT; Redo Log 23

24 SQL Based Apply Misconception - Parallelism Sessions Updating Primary Database Network Sessions Updating Logical Standby Database Apply tends to serialize the work that took place on the primary If preserve commit order is true, data must be applied in the order it was processed on the primary 24

25 SQL Based Apply Can it Keep up? R U R U R U R U R R R R R R Site 1... SQL Statements... Site 2 Replication Know your application. What is the batch schedule? How much data do they update? How do they do their updates? (array processing, direct path load, commit scope, bulk updates) Make sure you understand the limitations of any SQL based replication tool these considerations are NOT limited to Data Guard SQL Apply 25

26 GRP Guaranteed Restore Point GRP Point #2 GRP Point #nn GRP Point #1 SCN # 200+ SCN # 100 SCN # 50 Flash Back Log / Archive Logs A guaranteed restore point enables you to flash the database back deterministically to the restore point. The guaranteed depends on sufficient space being available in the flash recovery area. Online DBA only function. 26

27 Chosen Architecture Oracle MAA at Allstate Insurance Co. Legacy Application Conversion (Next Gen) RTO/RPO HA Options and Considerations Oracle RAC Extended Distance Clusters Data Guard / Replication Options Chosen Architecture Outages and Upgrades ODP and HA Closing thoughts 27

28 Next Gen Selected Architecture MAA Oracle RAC, Data Guard, ASM, Flashback Database, RMAN & Enterprise Manager The 3 headed dragon RAC Primary database RAC Logical Standby RAC Physical Standby 28

29 Primary Database Oracle RAC Server 1 Server 2 Server 3 Server n Oracle Oracle Oracle... Oracle Dictionary ASM Shared Storage User Data Currently 2 nodes, upgrading to 4 nodes at end of dual core processors per node 24 total cores per node Extensive use of Oracle 10g Services to place work where we need it, when we need it 29

30 Oracle RAC Primary + Hot Swappable R U R U R U R U R Physical Standby Site Site 2 Primary Database Redo Stream Apply Redo Apply Redo Redo Apply Physical is the primary DR / switchover site flashback database used Standby is currently a 2 node RAC, will upgrade to 4 nodes Real-time apply on standby (but not open read-only until 11g) 12 dual processors per node, 24 total cores 30

31 Site 1 Hot Swappable and Active/Active (RO) R U R U R U R U R Primary Database Redo Stream Redo Stream SQL Statements Logical... Physical R R R R R R R R R Site 2 A logical standby resides on the same hardware as the physical standby Logical is open for read access, supports up-to-date Next Gen reporting Provides extra corruption prevention and rolling database upgrades. 31

32 Selected Architecture - Benefits Site 2 Site 1 Application Workload Servers Balance... Redo Transport Application Workload Servers Balance... Logical Redo Transport Application Servers... Physical Good Dragon!!!! Maximum data protection Protection from software corruption Transparent to most failures Near 24x7 availability Shortened recovery window Rolling upgrades minimizes planned downtime Role transitions are non-destructive Continuous access to data Continuous protection after failover to physical standby Offload reporting to DR system Support pre-prod test activity Able to use industry standard 32 hardware components

33 Outages and Upgrades Oracle MAA at Allstate Insurance Co. Legacy Application Conversion (Next-Gen) RTO/RPO HA Options and Considerations Oracle RAC Extended Distance Clusters Data Guard / Replication Options Chosen Architecture Outages and Upgrades ODP and HA Closing thoughts 33

34 Switchover / Failover to Recovery Site Site 1 New... Physical A switchover is a planned reversal of roles between production and standby DBs to avoid downtime during scheduled maintenance. Redo Stream SQL Statements... Logical Redo Stream New... Primary R R R R R R R R R R U R U R U R U R Site 2 34

35 Planned Switchover Steps 1 Blackout Monitoring Jobs (OEM) 2 Let logs / apply catch up 3 GRP all sites 4 Switchover from Primary to Physical 5 Switchover application 6 Open up Application for full processing 5 Site 1... New Physical U R U R U R 4 Redo Shipping Site 2... Logical Redo... New Primary U R U R U R OEM OEM 1 35

36 Switchover - Benefits Site 1... New Physical 4 Redo Shipping Site 2... Logical Redo... New Primary Practice makes perfect Allstate performs monthly switchovers for this application Planned switchover / switchback activities have occurred 15+ times to date and have become routine Not possible with legacy systems infrastructure 36

37 Rolling Upgrades Oracle RAC Data Guard Logical Standby 37

38 Oracle RAC Rolling Upgrades Workload Manager (10g Services) Server 1 Server 2 Server 3 Server 4 Oracle ORA1 Oracle ORA1 Oracle ORA1 Oracle ORA1 Application A Application A Application B Application A Application B Application B Server 1: Patch Appl A ASM Shared Storage Appl B Each server is patched one at a time. Oracle 10g Services are used to move apps around the cluster during the upgrade Rolling upgrades are available only for patches certified by Oracle to be eligible for rolling upgrades 38

39 RAC Rolling Upgrades - Patches that apply Server 1 Server 2 Server 3 Server 4 Oracle ORA1 Application A Application B Server 1 Fails Workload Manager (10g Services) Oracle ORA1 Application A Oracle ORA1 Application B Oracle ORA1 Application A Application B Appl A ASM Shared Storage Appl B Patches that do not touch the data dictionary Patches not related to RAC internode communication Patches related to client-side tools such as SQL*Plus, Utilities Patches that do not change shared database resources such as database headers, control files, etc. RAC Rolling upgrades applicable to one -off patching only, full patch sets do not apply 39

40 RAC Rolling Upgrades Actual Benefits Workload Manager (10g Services) Server 1 Server 2 Server 3 Server 4 Oracle ORA1 Application A Application B Server 1 Fails Oracle ORA1 Application A Oracle ORA1 Application B Oracle ORA1 Application A Application B Appl A ASM Shared Storage Appl B Little or no downtime. Only the node being patched needs to be down. Have been performed at Allstate on several occasions to apply critical one off patches that were causing application issues. Previous Allstate Claim system architectures did not take advantage of this feature. 40

41 Rolling Upgrades Using SQL Apply Protection mode must be maximum availability or maximum performance (see protection_mode in v$database) LOG_ARCHIVE_DEST_n must be set to OPTIONAL The COMPATIBLE init.ora parm must match the software release prior to the upgrade 41

42 Rolling Upgrades - SQL Apply 1 Upgrade the Logical Standby to version n+1 - Defer redo transport during upgrade 2 Re-start transport and apply on Logical Standby - Redo accumulated at primary will now start processing and automatically resync logical at n+1 with the primary still at n Version n Site 1... U R U R U 3 Switchover to the logical promotes it to being the new primary running at version n+1 - switchover time is the only downtime required for upgrade Primary 3 2 Redo Stream Redo Stream Version n+1 Site Logical... Physical Version n 42

43 Rolling Upgrades - SQL Apply (continued) 4 Reconnect the application to the new primary - Redo will can not be transmitted to a lower Oracle version - New transactions running on primary running at n+1 are unprotected at this time Site 1 Version n... New Logical Redo Shipping Site 2 Version n+1... New Primary U R U R U Redo Stream 4... Physical Version n 43

44 Rolling Upgrades - SQL Apply (continued) 6 Upgrade Physical (binaries only) 7 Upgrade the old primary. Start SQL Apply on new Logical 8 -Redo will start to transmit and process -Primary is unprotected at this time. Site 1... New Logical 7 version N+1 8 Redo Stream Redo Shipping Site 2... New Primary U R U R U This is optional, but once complete, most people switch back so everything is in its original location!... Physical 6 version N+1 44

45 Rolling Upgrades Oracle RAC vs Data Guard Switchover RAC Rolling Switchover ** qualifying one off patches. ** OS Upgrades ** Major Oracle releases and full patch sets ** Denotes already done at Allstate. 45

46 Rolling Upgrades Greatly reduces down time for mission critical applications compared to previous architecture Multiple options available RAC Rolling for OS and one off patches SQL Apply major patch sets Use the appropriate tool for the appropriate job Practice and Test thoroughly 46

47 Unplanned Outages 47

48 Unplanned Failover Steps (Physical) 1 If possible.. Manually move remaining archive logs to the physical copy 2 Manually apply archive logs 3 Failover from Primary to Physical Site 1 4 If needed. Synch up logical with the new primary... 3 Site 2... Logical Redo... New Primary 4 Logical re-instate may require flashback 5 Fail application over 6 Open up Application for full processing 48

49 Unplanned Failover Steps (Logical) 1 If possible.. Manually move remaining archive logs to the logical copy 2 Manually force Logical to apply data from standby redo log 3 Failover from Primary to Logical 4 Fail application over 5 Open up Application for full processing Site 1 Corruption... If the original primary and physical standby can be reinstated using flashback database, Data Guard will resynchronize them with the new primary without requiring a restore from backup! 4 Site 2... New Primary... Physical 49

50 ODP and HA Oracle MAA at Allstate Insurance Co. Legacy Application Conversion (Next-Gen) RTO/RPO HA Options and Considerations Oracle RAC Extended Distance Clusters Data Guard / Replication Options Chosen Architecture Outages and Upgrades ODP and HA Closing thoughts 50

51 ODP Best Practices Workload Manager (10g Services) Server 1 Server 2 Server 3 Server 4 Oracle ORA1 Application A Application B Server 1: Outage Oracle ORA1 Application A Oracle ORA1 Application B Oracle ORA1 Application A Application B Appl A Shared Storage Appl B Connections to the failing member need to be reconnected Applications with persistent connections need to have error handling on the connection level Persistent connections are reused (pooled connections) Keep the min pool size small to avoid connection storms Leverage the connection lifetime, incr and decr pool size parameter(s) At a minimum, use 10g DTP services for two phase commit 51

52 Closing Thoughts Oracle MAA at Allstate Insurance Co. Legacy Application Conversion (Next-Gen) RTO/RPO HA Options and Considerations Oracle RAC Extended Distance Clusters Data Guard / Replication Options Chosen Architecture Outages and Upgrades ODP and HA Closing thoughts 52

53 Know your application MAA Lessons Learned Let RTO/RPO drive your HA needs Make sure your MAA solution fits your needs Be aware of limitations to SQL based replication Exercise your DR / switchover plan frequently Incorporate proper error handling on your connection objects 53

54 References Oracle Database High Availability Oracle Data Guard Concepts and Administration, Oracle 10g Release 2 Oracle Database High Availability Best Practices, Oracle 10g Release 2 Oracle Maximum Availability Architecture Best Practices 54

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

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

Focus On: Oracle Database 11g Release 2

Focus On: Oracle Database 11g Release 2 Focus On: Oracle Database 11g Release 2 Focus on: Oracle Database 11g Release 2 Oracle s most recent database version, Oracle Database 11g Release 2 [11g R2] is focused on cost saving, high availability

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

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

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

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

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

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

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

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

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

Oracle10g Data Guard: Back to the Future

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

More information

Oracle 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

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

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

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

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

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

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

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

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

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

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

Business Continuity and Disaster Recovery. Ed Crowley Ch 12

Business Continuity and Disaster Recovery. Ed Crowley Ch 12 Business Continuity and Disaster Recovery Ed Crowley Ch 12 Topics Disaster Recovery Business Impact Analysis MTBF and MTTR RTO and RPO Redundancy Failover Backup Sites Load Balancing Mirror Sites Disaster

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

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

<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

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

NEC ExpressCluster Introduction.

NEC ExpressCluster Introduction. NEC ExpressCluster Introduction www.expresscluster.com ExpressCluster Overview Software for no-click fully automated recovery of critical application and data systems from hardware, software and site failures

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

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

<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

Oracle Database 10G. Lindsey M. Pickle, Jr. Senior Solution Specialist Database Technologies Oracle Corporation

Oracle Database 10G. Lindsey M. Pickle, Jr. Senior Solution Specialist Database Technologies Oracle Corporation Oracle 10G Lindsey M. Pickle, Jr. Senior Solution Specialist Technologies Oracle Corporation Oracle 10g Goals Highest Availability, Reliability, Security Highest Performance, Scalability Problem: Islands

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

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

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

Microsoft SQL Server

Microsoft SQL Server Microsoft SQL Server Abstract This white paper outlines the best practices for Microsoft SQL Server Failover Cluster Instance data protection with Cohesity DataPlatform. December 2017 Table of Contents

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

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

Data Sheet: Storage Management Veritas Storage Foundation for Oracle RAC from Symantec Manageability and availability for Oracle RAC databases

Data Sheet: Storage Management Veritas Storage Foundation for Oracle RAC from Symantec Manageability and availability for Oracle RAC databases Manageability and availability for Oracle RAC databases Overview Veritas Storage Foundation for Oracle RAC from Symantec offers a proven solution to help customers implement and manage highly available

More information

Oracle E-Business Availability Options. Solution Series for Oracle: 2 of 5

Oracle E-Business Availability Options. Solution Series for Oracle: 2 of 5 Oracle E-Business Availability Options Solution Series for Oracle: 2 of 5 Table of Contents Coping with E-Business Hours Oracle E-Business Availability Options.....1 Understanding Challenges to Availability...........................2

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 This Oracle 11g: RAC and Grid Infrastructure Administration Accelerated training teaches you about the Oracle

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

VERITAS Volume Replicator. Successful Replication and Disaster Recovery

VERITAS Volume Replicator. Successful Replication and Disaster Recovery VERITAS Volume Replicator Successful Replication and Disaster Recovery V E R I T A S W H I T E P A P E R Table of Contents Introduction.................................................................................1

More information

High Availability- Disaster Recovery 101

High Availability- Disaster Recovery 101 High Availability- Disaster Recovery 101 DBA-100 Glenn Berry, Principal Consultant, SQLskills.com Glenn Berry Consultant/Trainer/Speaker/Author Principal Consultant, SQLskills.com Email: Glenn@SQLskills.com

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

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

Database Services at CERN with Oracle 10g RAC and ASM on Commodity HW

Database Services at CERN with Oracle 10g RAC and ASM on Commodity HW Database Services at CERN with Oracle 10g RAC and ASM on Commodity HW UKOUG RAC SIG Meeting London, October 24 th, 2006 Luca Canali, CERN IT CH-1211 LCGenève 23 Outline Oracle at CERN Architecture of CERN

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: 1.800.529.0165 Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 Duration: 5 Days What you will learn This Oracle 11g: RAC and Grid Infrastructure

More information

Modernize Your Backup and DR Using Actifio in AWS

Modernize Your Backup and DR Using Actifio in AWS FOR AWS Modernize Your Backup and DR Using Actifio in AWS 150105H FOR AWS Modernize Your Backup and DR Using Actifio in AWS What is Actifio? Actifio virtualizes the data that s the lifeblood of business.

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

Enterprise Manager: Scalable Oracle Management

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

More information

Oracle Database 12c: Clusterware & RAC Admin Accelerated Ed 1

Oracle Database 12c: Clusterware & RAC Admin Accelerated Ed 1 Oracle University Contact Us: 001-855-844-3881 Oracle Database 12c: Clusterware & RAC Admin Accelerated Ed 1 Duration: 5 Days What you will learn This Oracle Database 12c: Clusterware & RAC Admin Accelerated

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

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

What is wrong with PostgreSQL? OR What does Oracle have that PostgreSQL should? Richard Stephan

What is wrong with PostgreSQL? OR What does Oracle have that PostgreSQL should? Richard Stephan What is wrong with PostgreSQL? OR What does Oracle have that PostgreSQL should? Richard Stephan PostgreSQL is an Enterprise RDBMS Schemas, Roles, Accounts Tablespace Management Table Partitioning Write-Ahead

More information

An Oracle White Paper May Oracle VM 3: Overview of Disaster Recovery Solutions

An Oracle White Paper May Oracle VM 3: Overview of Disaster Recovery Solutions An Oracle White Paper May 2014 Oracle VM 3: Overview of Disaster Recovery Solutions Contents Introduction... 1 Overview of DR Solutions with Oracle VM... 2 Choose your DR solution path... 2 Continuous

More information

High Availability- Disaster Recovery 101

High Availability- Disaster Recovery 101 High Availability- Disaster Recovery 101 DBA-100 Glenn Berry, Principal Consultant, SQLskills.com Glenn Berry Consultant/Trainer/Speaker/Author Principal Consultant, SQLskills.com Email: Glenn@SQLskills.com

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

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

Oracle Database 11g: New Features for Administrators Release 2 Oracle University Contact Us: 0845 777 7711 Oracle Database 11g: New Features for Administrators Release 2 Duration: 5 Days What you will learn This course gives you the opportunity to learn about and

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

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

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

More information

Maximum Availability Architecture. Oracle Best Practices For High Availability

Maximum Availability Architecture. Oracle Best Practices For High Availability Preventing, Detecting, and Repairing Block Corruption: Oracle Database 12c Oracle Maximum Availability Architecture White Paper February 2014 Maximum Availability Architecture Oracle Best Practices For

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

Oracle Database 12c: RAC Administration Ed 1

Oracle Database 12c: RAC Administration Ed 1 Oracle University Contact Us: +7 (495) 641-14-00 Oracle Database 12c: RAC Administration Ed 1 Duration: 4 Days What you will learn This Oracle Database 12c: RAC Administration training will teach you about

More information

Tips and Tricks on Successful Upgrade to 11gR2

Tips and Tricks on Successful Upgrade to 11gR2 Tips and Tricks on Successful Upgrade to 11gR2 Project Approval Get buy in from CIO and other groups Justify the need End of premier support Extended Support Cost To be current Benefits of new release

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

Veritas InfoScale Enterprise for Oracle Real Application Clusters (RAC)

Veritas InfoScale Enterprise for Oracle Real Application Clusters (RAC) Veritas InfoScale Enterprise for Oracle Real Application Clusters (RAC) Manageability and availability for Oracle RAC databases Overview Veritas InfoScale Enterprise for Oracle Real Application Clusters

More information

LIFECYCLE MANAGEMENT FOR ORACLE RAC 12c WITH EMC RECOVERPOINT

LIFECYCLE MANAGEMENT FOR ORACLE RAC 12c WITH EMC RECOVERPOINT WHITE PAPER LIFECYCLE MANAGEMENT FOR ORACLE RAC 12c WITH EMC RECOVERPOINT Continuous protection for Oracle environments Simple, efficient patch management and failure recovery Minimal downtime for Oracle

More information

MySQL High Availability. Michael Messina Senior Managing Consultant, Rolta-AdvizeX /

MySQL High Availability. Michael Messina Senior Managing Consultant, Rolta-AdvizeX / MySQL High Availability Michael Messina Senior Managing Consultant, Rolta-AdvizeX mmessina@advizex.com / mike.messina@rolta.com Introduction Michael Messina Senior Managing Consultant Rolta-AdvizeX, Working

More information

Swiss IT Pro SQL Server 2005 High Availability Options Agenda: - Availability Options/Comparison - High Availability Demo 08 August :45-20:00

Swiss IT Pro SQL Server 2005 High Availability Options Agenda: - Availability Options/Comparison - High Availability Demo 08 August :45-20:00 Swiss IT Pro Agenda: SQL Server 2005 High Availability Options - Availability Options/Comparison - High Availability Demo 08 August 2006 17:45-20:00 SQL Server 2005 High Availability Options Charley Hanania

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

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

HP & Oracle A Powerful Alliance

HP & Oracle A Powerful Alliance HP & Oracle A Powerful Alliance Bei Fragen wenden Sie sich bitte an: Frau Virpi Matikainen Oracle Account Managerin email: virpi_matikainen@hp.com Tel: 089/61412-513 Rebecca Kühn HP/Oracle CTC 10. Dezember

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

Service Recovery & Availability. Robert Dickerson June 2010

Service Recovery & Availability. Robert Dickerson June 2010 Service Recovery & Availability Robert Dickerson June 2010 Started in 1971 with $3,000, 40 clients and 1 employee. 2009: over $2B revenue, 500,000+ clients, 13,000 employees. Payroll / Tax Services / 401(k)

More information

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

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

More information

Oracle 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

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 12c R2: RAC Administration Ed 2

Oracle Database 12c R2: RAC Administration Ed 2 Oracle University Contact Us: +36 1224 1760 Oracle Database 12c R2: RAC Administration Ed 2 Duration: 4 Days What you will learn This Oracle Database 12c R2: RAC Administration training will teach you

More information

Pro2SQL. OpenEdge Replication. for Data Reporting. for Disaster Recovery. March 2017 Greg White Sr. Progress Consultant Progress

Pro2SQL. OpenEdge Replication. for Data Reporting. for Disaster Recovery. March 2017 Greg White Sr. Progress Consultant Progress Pro2SQL for Data Reporting OpenEdge Replication for Disaster Recovery March 2017 Greg White Sr. Progress Consultant Progress 1 Introduction Greg White Sr. Progress Consultant (Database and Pro2) 2 Replication

More information

ORACLE 11g R2 New Features

ORACLE 11g R2 New Features KNOWLEDGE POWER Oracle Grid Infrastructure Installation and Upgrade Enhancements Oracle Restart ASM Enhancements Storage Enhancements Data Warehouse and Partitioning Enhancements Oracle SecureFiles Security

More information

Oracle Database 10g: New Features for Administrators Release 2

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

More information

Achieving Rapid Data Recovery for IBM AIX Environments An Executive Overview of EchoStream for AIX

Achieving Rapid Data Recovery for IBM AIX Environments An Executive Overview of EchoStream for AIX Achieving Rapid Data Recovery for IBM AIX Environments An Executive Overview of EchoStream for AIX Introduction Planning for recovery is a requirement in businesses of all sizes. In implementing an operational

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