Oracle Database Service High Availability with Data Guard?

Size: px
Start display at page:

Download "Oracle Database Service High Availability with Data Guard?"

Transcription

1 Oracle Database Service High Availability with Data Guard? Robert Bialek Senior Principal doag2017

2 Who Am I Senior Principal Consultant and Trainer at Trivadis GmbH in Munich. Master of Science in Computer Engineering. At Trivadis since Trivadis Partner since Focus: Data and Service High Availability, Disaster Recovery. Architecture Design, Optimization, Automation. New Technologies (Trivadis Technology Center). Open Source. Technical Project Leadership. Trainer: O-GRINF, O-RAC, O-DG

3 Our company. Trivadis is a market leader in IT consulting, system integration, solution engineering and the provision of IT services focusing on and technologies in Switzerland, Germany, Austria and Denmark. We offer our services in the following strategic business fields: O P E R A T I O N Trivadis Services takes over the interacting operation of your IT systems

4 With over 600 specialists and IT experts in your region. COPENHAGEN HAMBURG 14 Trivadis branches and more than 600 employees. 200 Service Level Agreements. Over 4,000 training participants. DÜSSELDORF Research and development budget: CHF 5.0 million. FRANKFURT Financially self-supporting and sustainably profitable. BASEL FREIBURG STUTTGART BRUGG ZURICH MUNICH VIENNA Experience from more than 1,900 projects per year at over 800 customers. GENEVA BERN LAUSANNE

5 Technology on its own won't help you. You need to know how to use it properly

6 Database Service High Availability Goal Increase database service uptime, by: eliminating any single point of failure to avoid unplanned outages. minimizing the effect of an unplanned outage on the end user (automatic failover). reducing downtimes during planned outages. Storage Consider the whole SW/HW stack. Database Server(s) Application Server(s) Clients Find the best cost/risk ratio. Downtime Best cost/risk ratio Effort Costs Complexity Availability

7 Database Service High Availability Options Cluster primarily used option for service high availability: Real Application Clusters. RAC One Node. Cold Failover Cluster. Data Replication used mostly for data, rather than service high availability: Data Guard (Fast-Start Failover/Global Data Services). GoldenGate (Global Data Services). Other replication technologies. HA SPOF HA HA

8 Agenda 1. Introduction 2. Configuration 3. Special Cases 4. Conclusions

9 Introduction

10 Database Service HA with Data Guard? Introduction Yes, it can also be used for service high availability: Planned downtimes manual switchover. Unplanned downtimes fast-start failover or manual failover. Why might we consider Data Guard for service high availability: Less complex than a cluster installation. Infrastructure requirements not that high (even local storage is sufficient). Not subject to additional license fees (EE license assumed). Data Guard Additionally, many other advantages: data high availability, snapshot standby, potentially rolling upgrade capability,... But, with some restrictions we need to consider... Primary Standby FSFO Configuration

11 Database Service HA with Data Guard? Big Picture Database Clients Master Observer Required Backup Observers (optional, 12.2) Ping Ping Ping Primary RW Service Transparency required (failover/ switchover)... Primary Target Failover Standby Candidate Target Failover Standbys (optional, 12.2)

12 Database Service HA with Data Guard? Monitoring Reconnect interval expired Logoff Observer Failover condition detected ObserverReconnect property set and reached Timeout Connect re-tries DGMGRL Threads W000 B001 P001 S001 Failover SLEEP ~ 3sec. Connect SLEEP ~ 3sec. PING PRIMARY Enter PING State PING TARGET STANDBY

13 Configuration

14 Data Guard Protection Modes with FSFO Prerequisites FSFO: Guaranted zero data loss. FSFO: Data loss possible. FSFO: Guaranted zero data loss. MaxAvailability (10.2+) MaxPerformance (11.1+) MaxProtection (12.2) LogXptMode=SYNC or FASTSYNC (12.1+) FastStartFailoverTarget(*) Flashback Database Mostly used protection mode LogXptMode=ASYNC FastStartFailoverTarget(*) FastStartFailoverLagLimit Flashback Database All Protection Modes LogXptMode=SYNC FastStartFailoverTarget(*) Flashback Database Recommended: at least 2 STDBY DBs (protection mode downgrade!) DGMGRL> EDIT CONFIGURATION SET PROPERTY FastStartFailoverThreshold = <xy>; DGMGRL> ENABLE FAST_START FAILOVER; Value in seconds

15 Fast-Start Failover Observer (1) Monitoring component, initiates a failover procedure. In 12.2, up to 3 observers (in background) can be started: One master and up to two backup (standby) observers. DGMGRL> START OBSERVER OBS1.TRIVADIS.COM IN BACKGROUND FILE IS '$ADMIN_SID/fsfo_$ORACLE_SID.dat' LOGFILE IS '$ADMIN_SID/fsfo_$ORACLE_SID.log' CONNECT IDENTIFIER IS <Alias1>.TRIVADIS.COM; In older releases: Only one running observer (HA needs to be adressed). Ping Observer PRIMARY Oracle wallet required W000 P001 B001 S001 TARGET Failover Standby nohup dgmgrl -logfile $ADMIN_SID/fsfo_$ORACLE_SID.log <<EOD & CONNECT $CONNECT_DATA START OBSERVER FILE='$ADMIN_SID/fsfo_$ORACLE_SID.dat'; EOD

16 Fast-Start Failover Observer (2) Observer Fast start-failover is initiated by the master observer to the target standby database, if one of the following conditions is detected: observer and the target standby database cannot reach the primary database (default: ObserverOverride= FALSE ). user-configurable condition is met. Ping PRIMARY DBMS_DG.INITIATE_FS_FAILOVER function has been executed. W000 P001 B001 S001 TARGET Failover Standby Additonally, other pre-condidtions enforced by a protection mode need to be fulfilled: MaxProtection/MaxAvailability: target failover standby is in SYNC. MaxPerformance: FastStartFailoverLagLimit not reached for the target failover standby

17 Data Guard: Role-Based Services For a Data Guard system, we need a role-based service, that is running only if database has a specific role: Read-write service on a primary database. Optionally, a service on standby databases for reporting. Optionally, a service on snapshot standby databases. Database Clients? To accomplish this task: Use Oracle Grid Infrastructure role-based services. Create your own AFTER STARTUP ON DATABASE trigger. Service R/W Service R/O [SNAP]

18 Data Guard: Example Role-Based Services Example role-based services with Grid Infrastructure. srvctl add service -db DB_SITE1 service SRV_RW.trivadis.com -role PRIMARY srvctl add service -db DB_SITE1 service SRV_RO.trivadis.com -role PHYSICAL_STANDBY srvctl add service -db DB_SITE1 -service SRV_SP.trivadis.com -role SNAPSHOT_STANDBY Services are started only if database and service role match. SvcAgent::start 680 query_db_role SvcAgent::start 710 not starting service srv_rw Role mismatch - Service role:primary, current DB role:physical_standby Depending on used client HA features (TAF, FAN/FCF, AC) additional service properties need to be specified

19 Client-Side Configuration Main Problems To Address CASE 1 CASE 2 New network session (connect) Database Clients Already established network session Database Clients 2 Connect attempts 4 Client failover 1 Connected 5 Client failover 3 Wait for connect timeout Problem Problem 3 Re-connect attempts 4 Wait for re-connect timeout Problem Problem 1 IP not reachable (server/network/ issue) 2 IP not reachable (server/network/ issue)

20 New Oracle Net Session Connect Timeout (1) sqlnet.ora parameters (OCI, ODP.net) Applies to each IP that a host name resolves to! All Oracle client versions supported. TCP.CONNECT_TIMEOUT=3 #default 60 sec. SQLNET.OUTBOUND_CONNECT_TIMEOUT=5 #no default For clients >=11.2: 1 LSNR 2 Three-way handshake Oracle Net 3 LSNR OLTP.trivadis.com = (DESCRIPTION = (FAILOVER=ON) (LOAD_BALANCE=OFF) Introduced in (CONNECT_TIMEOUT=5)(RETRY_COUNT=3)(RETRY_DELAY=1)(TRANSPORT_CONNECT_TIMEOUT=3) (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP )(HOST = italy )(PORT = 1521)) (ADDRESS = (PROTOCOL = TCP )(HOST = sweden )(PORT = 1521))) (CONNECT_DATA = (SERVICE_NAME = OLTP_RW.trivadis.com)))

21 New Oracle Net Session Connect Timeout (2) JDBC Thin driver TRANSPORT_CONNECT_TIMEOUT is available beginning with 12.2 version To use RETRY_COUNT with , patch is required (BUG ) =(FAILOVER=ON)(LOAD_BALANCE=OFF)" + "(CONNECT_TIMEOUT=3)(RETRY_COUNT=10)(RETRY_DELAY=1)" + "(ADDRESS_LIST = " + "(ADDRESS = (PROTOCOL = TCP )(HOST = blue.trivadis.com )(PORT = 1521)) " + "(ADDRESS = (PROTOCOL = TCP )(HOST = brown.trivadis.com )(PORT = 1521))) " + "(CONNECT_DATA = (SERVICE_NAME = sales_rw.trivadis.com)))"); JDBC Thin clients can alternatively use the following driver property (ms) Overrides CONNECT_TIMEOUT from address description parameters Properties prop = new Properties(); prop.put(oracle.net.ns.sqlnetdef.tcp_conntimeout_str, ""+3000); ods.setconnectionproperties(prop);

22 Established Oracle Net Session Re-Connect Timeout 2 Break established network connection without waiting for long TCP timeouts (>15 min.) In most cases no VIPs in use! Using the following parameters is not a good idea: SQLNET.RECV_TIMEOUT=30 #no default value, OCI driver SQLNET.SEND_TIMEOUT=30 #no default value, OCI driver LSNR P1 3 Timeout 1 Oracle Net 4 LSNR Client failover prop.put ("oracle.jdbc.readtimeout", "5000"); //5000ms, JDBC Thin driver Better solution: If possible use: Fast Application Notification/Fast Connection Failover. Tuning OS kernel parameter tcp_retries2 might be also an alternative

23 Client HA Features Overview Transparent Application Failover: Can be used with Data Guard the same way (advantages/disadvantages) as with a cluster. Fast Application Notification/Fast Connection Failover: Oracle Grid Infrastructure is required to register with ONS. Comparing to RAC only rapid notification about up/down events, no workload balancing. Application Continuity can be used with Data Guard the same way as with a cluster: But requires RAC or RAC One Node or ADG (GG) option. More about this topic: DOAG 2016 presentation: Oracle Client Failover - Under the Hood

24 Special Cases

25 Special Cases with FSFO: Candidate Targets Standby Starting with 12.2, many candidate fast-start failover target databases can be specified, but switchover or FSFO works only to the current target standby database. DGMGRL> EDIT DATABASE db_site1 SET PROPERTY FastStartFailoverTarget = Threshold: Target: 60 seconds db_site2 Candidate Targets: db_site2,db_site3 Observers: 'db_site2,db_site3'; (*) obs1.trivadis.com obs2.trivadis.com DGMGRL> SWITCHOVER TO db_site3; Error: ORA-16655: specified standby database not the current fast-start failover target standby. Current target depends on many conditions FSFO Switchover db_site1 db_site2 db_site

26 Special Cases: Switchover DelayMins >0 Version X: recovery re-started with NODELAY option. Version X: recovery waits until DelayMins reached! OPEN_MODE Primary CLOSED BY SWITCHOVER Standby MOUNTED Application RW service outage within DelayMins time-frame! Application connect attemps fail with ORA-16456: switchover to standby in progress or completed Version : Switchover is not possible. Error: ORA-16672: switchover not permitted to standby database with non-zero DelayMinsFailed. PRIMARY DelayMins>0 TARGET Failover Standby

27 Special Cases with FSFO: Master Observer Failure Master Observer Backup Observers After about 31 sec. the master observer is changed, i.e.: available backup observer is promoted to the master role. Note: to perform a master change, the primary database needs to be available! Data Guard Broker initiated a master observer switch since the current master observer cannot reach the primary database For maintenance, a master change can be performed manually. PRIMARY Logged on the primary database DGMGRL> SET MASTEROBSERVER TO obs2.trivadis.com; Sent the proposed master observer to the data guard broker configuration. Please run SHOW OBSERVER to see if master observer switch actually happens

28 Special Cases with FSFO: Failover Target Failure Observer After about 10 sec. the target failover standby is changed, i.e.: a candidate target failover standby observer is promoted to the current target role. Permission granted to the primary database for target switch. The primary database returned to SYNC/NOT LAGGING state with the standby database db_site3. db_site1 db_site2 db_site3 Note: to perform the target failover standby change, the primary database and the master observer need to be available! If the master observer fails at the same time: LGWR: FSFO SetState("UNSYNC", 0x2) operation requires an ack Primary database will shutdown within 30 seconds if permission is not granted from Observer or FSFO target standby to proceed

29 Special Cases with FSFO: Master Observer/Primary If the primary and the master observer fail: No failover is initiated to a candidate standby. From a backup observer log file: Master Observer Backup Observers Ready to failover check on standby returned RFS_NON_MSTOB. Command READY_TO_FSFO to thread S024 returned status=0 Fast-Start Failover is not possible because this observer is not the master. db_site1 db_site2 db_site3 If the master observer is started at a later time, it waits until FastStartFailoverThreshold timeout is reached again and fails over to the current target standby

30 Special Cases with FSFO: Private Redo Network If the public network on the primary server fails: Broker configuration property: ObserverOverride=FALSE. No failover (HB over private network still works!). Fast-Start Failover is not possible because primary last contacted the standby within FastStartFailoverThreshold seconds HB Master Observer Public Network In this network configuration consider using: db_site1 db_site2 db_site3 Private Network DGMGRL> EDIT CONFIGURATION SET PROPERTY ObserverOverride='TRUE';

31 Master Observer, Primary/Standby DB: Location? (1) For DR HA service protection, do not place the primary and the master observer in the same data center! Data Center 1 Data Center 2 Master Observer Backup Observer No automatic failover! Primary Target Standby No RW application service available!

32 Master Observer, Primary/Standby DB: Location? (2) For DR HA service protection, do not place the primary and the master observer in the same data center! Data Center 1 Data Center 2 Backup Observer Master observer placement correction monitoring: DGMGRL> SET MASTEROBSERVER TO Master Observer To relocate: Disable & Enable FSFO Automatic failover! Potential placement problem! Candidate Target Standby Primary Target Standby RW application service available!

33 Conclusions

34 Conclusions (1) Can Data Guard be a good solution for database service high availability? Yes, with a fast-start failover configuration. Anyway, it is not a replacement for a cluster but rather an alternative. Careful business requirements analysis is necessary. Advantages: It offers a good service high availability, in addition to excellent data high availability and some other features. Fairly simple solution (setup and operation). Not subject to additional license fees (EE license assumed). Infrastructure requirements not that high as for a cluster. Most client HA features can be used the same way as with a cluster

35 Conclusions (2) Disadvantages: Component placement is critical and requires customized monitoring scripts. Some technical restrictions like network latencies (SYNC), flashback database or force logging might limit Data Guard in this area. Re-connect timeouts without FAN/FCF (no VIPs)

36 DOAG 2017 #opencompany Booth: 3rd Floor next to the escalator We share our Know how! Just come across, Live-Presentations and documents archive T-Shirts, Contest and much more We look forward to your visit

Oracle Client HA Configuration with Oracle

Oracle Client HA Configuration with Oracle Oracle Client HA Configuration with Oracle 18c Robert Bialek @RobertPBialek doag2018 Who Am I Senior Principal Consultant and Trainer at Trivadis GmbH in Munich Master of Science in Computer Engineering

More information

Database Sharding with Oracle RDBMS

Database Sharding with Oracle RDBMS Database Sharding with Oracle RDBMS First Impressions Robert Bialek Principal Consultant BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH STUTTGART VIENNA

More information

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

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

More information

Backup Methods from Practice

Backup Methods from Practice Backup Methods from Practice Optimized and Intelligent Roland Stirnimann @rstirnimann_ch BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH STUTTGART VIENNA

More information

Cloud Acceleration. Performance comparison of Cloud vendors. Tobias Deml DOAG2017

Cloud Acceleration. Performance comparison of Cloud vendors. Tobias Deml DOAG2017 Performance comparison of Cloud vendors Tobias Deml Consultant @TobiasDemlDBA DOAG2017 About Consultant, Trivadis GmbH, Munich Since more than 9 years working in Oracle environment Focus areas Cloud Computing

More information

Empfehlungen vom BigData Admin

Empfehlungen vom BigData Admin Empfehlungen vom BigData Admin an den Oracle DBA Florian Feicht, Alexander Hofstetter @FlorianFeicht @lxdba doag2017 Our company. Trivadis is a market leader in IT consulting, system integration, solution

More information

Application Containers an Introduction

Application Containers an Introduction Application Containers an Introduction Oracle Database 12c Release 2 Multitenancy for Applications Markus Flechtner @markusdba doag2017 Our company. Trivadis is a market leader in IT consulting, system

More information

Oracle Database Failover Cluster with Grid Infrastructure 11g Release 2

Oracle Database Failover Cluster with Grid Infrastructure 11g Release 2 Oracle Database Failover Cluster with Grid Infrastructure 11g Release 2 DOAG Conference 2011 Robert Bialek Principal Consultant Trivadis GmbH BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG

More information

Domain Services Clusters Centralized Management & Storage for an Oracle Cluster Environment Markus Flechtner

Domain Services Clusters Centralized Management & Storage for an Oracle Cluster Environment Markus Flechtner s Centralized Management & Storage for an Oracle Cluster Environment Markus Flechtner BASLE BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH STUTTGART VIENNA

More information

Application High Availability with Oracle

Application High Availability with Oracle Application High Availability with Oracle Aychin Gasimov 02/2014 Application High Availability Application must be able to provide uninterrupted service to its end users. Application must be able to handle

More information

Application Containers an Introduction

Application Containers an Introduction Application Containers an Introduction Oracle Database 12c Release 2 - Multitenancy for Applications Markus Flechtner BASLE BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN

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

Application Containers an Introduction

Application Containers an Introduction Application Containers an Introduction Oracle Database 12c Release 2 Multitenancy for Applications Markus Flechtner BASLE BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE

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

Online Operations in Oracle 12.2

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

More information

Data Replication With Oracle GoldenGate Looking Behind The Scenes Robert Bialek Principal Consultant Partner

Data Replication With Oracle GoldenGate Looking Behind The Scenes Robert Bialek Principal Consultant Partner Data Replication With Oracle GoldenGate Looking Behind The Scenes Robert Bialek Principal Consultant Partner BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE

More information

Oracle Restart and FSFO in Cloud

Oracle Restart and FSFO in Cloud Oracle and FSFO in Cloud 0 I. Background II. Core Technology HA Oracle Oracle ADG Oracle FSFO III. and FSFO in Cloud IV. Issues V. Non Stop Cloud Active Data Center Agenda 1 How to build Oracle in the

More information

Data Vault Partitioning Strategies. Dani Schnider, Trivadis AG DOAG Conference, 23 November 2017

Data Vault Partitioning Strategies. Dani Schnider, Trivadis AG DOAG Conference, 23 November 2017 Data Vault Partitioning Strategies Dani Schnider, Trivadis AG DOAG Conference, 23 November 2017 @dani_schnider DOAG2017 Our company. Trivadis is a market leader in IT consulting, system integration, solution

More information

WELCOME. Unterstützung von Tuning- Maßnahmen mit Hilfe von Capacity Management. DOAG SIG Database

WELCOME. Unterstützung von Tuning- Maßnahmen mit Hilfe von Capacity Management. DOAG SIG Database WELCOME Unterstützung von Tuning- Maßnahmen mit Hilfe von Capacity Management DOAG SIG Database 28.02.2013 Robert Kruzynski Principal Consultant Partner Trivadis GmbH München BASEL BERN LAUSANNE ZÜRICH

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

Analytic Views: Use Cases in Data Warehouse. Dani Schnider, Trivadis AG DOAG Conference, 21 November 2017

Analytic Views: Use Cases in Data Warehouse. Dani Schnider, Trivadis AG DOAG Conference, 21 November 2017 Analytic Views: Use Cases in Data Warehouse Dani Schnider, Trivadis AG DOAG Conference, 21 November 2017 @dani_schnider DOAG2017 Our company. Trivadis is a market leader in IT consulting, system integration,

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

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

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 OpenWorld 14 Oracle Active Data Guard and Oracle GoldenGate High-Availability Best Practices

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

More information

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

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

Microservices with Kafka Ecosystem. Guido Schmutz

Microservices with Kafka Ecosystem. Guido Schmutz Microservices with Kafka Ecosystem Guido Schmutz @gschmutz doag2017 Guido Schmutz Working at Trivadis for more than 20 years Oracle ACE Director for Fusion Middleware and SOA Consultant, Trainer Software

More information

Presented By Chad Dimatulac Principal Database Architect United Airlines October 24, 2011

Presented By Chad Dimatulac Principal Database Architect United Airlines October 24, 2011 Presented By Chad Dimatulac Principal Database Architect United Airlines October 24, 2011 How much are the losses of a potential business when a downtime occurs during a planned maintenance and unexpected

More information

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

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

More information

Client Connectivity in a DataGuard Environment Harald van Breederode Oracle University 4-DEC-2007

Client Connectivity in a DataGuard Environment Harald van Breederode Oracle University 4-DEC-2007 Client Connectivity in a DataGuard Environment Harald van Breederode Oracle University 4-DEC-2007 1 About Me Senior Principal DBA Trainer Oracle University 25 years Unix Experience 12 years Oracle DBA

More information

IaaS/PaaS with Oracle Private Cloud Appliance in practice. Konrad HÄFELI Senior Solution Manager Infrastructure Engineering

IaaS/PaaS with Oracle Private Cloud Appliance in practice. Konrad HÄFELI Senior Solution Manager Infrastructure Engineering IaaS/PaaS with Oracle Private Cloud Appliance in practice Konrad HÄFELI Senior Solution Manager Infrastructure Engineering @KonradHaefeli doag2017 Our company. Trivadis is a market leader in IT consulting,

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

Oracle DataGuard 10gR2

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

More information

Oracle Database 12c: Data Guard Administration LVC

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

More information

Oracle 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

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

An Oracle White Paper November Oracle RAC One Node 11g Release 2 User Guide

An Oracle White Paper November Oracle RAC One Node 11g Release 2 User Guide An Oracle White Paper November 2009 Oracle RAC One Node 11g Release 2 User Guide Introduction... 1 Software Installation... 3 How to Configure an Oracle RAC One Node Database... 6 Rolling Patch Application

More information

REALTIME WEB APPLICATIONS WITH ORACLE APEX

REALTIME WEB APPLICATIONS WITH ORACLE APEX REALTIME WEB APPLICATIONS WITH ORACLE APEX DOAG Conference 2012 Johannes Mangold Senior Consultant, Trivadis AG BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MÜNCHEN STUTTGART

More information

Marco Mischke, DOAG Regio Nürnberg. Experts for database solutions.

Marco Mischke, DOAG Regio Nürnberg. Experts for database solutions. DataGuard DOs and DONTs Marco Mischke, 21.12.2017 DOAG Regio Nürnberg About me Oracle DBA since 2000 and Version 7.3.4 Certified Professional 10g, 11g RAC / Cluster Certified Expert 10g, 11g, 12c Oracle

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 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 Failover Cluster with

Oracle Database Failover Cluster with Oracle Database Failover Cluster with Grid Infrastructure 11g Release 2 Robert Bialek Principal Consultant, MU-IMS Oracle Certified Master robert.bialek@trivadis.com DOAG Regional Meeting Munich, 13.12.2010

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

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

Recovery without Backup. All Data Lost?

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

More information

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

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

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

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

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

Infrastructure Consolidation with OCI

Infrastructure Consolidation with OCI Infrastructure Consolidation with OCI Who we are Experts At Your Service Over 60 specialists in IT infrastructure Certified, experienced, passionate Based In Switzerland 100% self-financed Swiss company

More information

Exadata Database Machine Resource Management teile und herrsche!

Exadata Database Machine Resource Management teile und herrsche! Exadata Database Machine Resource Management teile und herrsche! DOAG Conference 2011 Konrad Häfeli Senior Technology Manager Trivadis AG BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR.

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

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

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

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

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

Oracle Database 12c: RAC Administration Ed 1 LVC

Oracle Database 12c: RAC Administration Ed 1 LVC Oracle University Contact Us: 001-855-844-3881 Oracle Database 12c: RAC Administration Ed 1 LVC Duration: 4 Days What you will learn This Oracle Database 12c: RAC Administration training will teach you

More information

Identifying Performance Problems in a Multitenant Environment

Identifying Performance Problems in a Multitenant Environment Identifying Performance Problems in a Multitenant Environment Christian Antognini @ChrisAntognini antognini.ch/blog BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE

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 Data Guard in Oracle Database 10g Release 2 Business Continuity for the Enterprise. An Oracle White Paper November 2006

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

More information

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

Oracle 11g Release 2 RAC & Grid Infrastructure Administration Course Overview

Oracle 11g Release 2 RAC & Grid Infrastructure Administration Course Overview Oracle 11g Release 2 RAC & Grid Infrastructure Administration Course Overview This Oracle 11g Release 2 RAC & Grid Infrastructure Administration course provides an introduction to the general features

More information

Disaster Recovery to the Oracle Cloud

Disaster Recovery to the Oracle Cloud Disaster Recovery to the Oracle Cloud Production on Premises, DR in the Cloud O R A C L E W H I T E P A P E R D E C E M B E R 2 0 1 7 Table of Contents 0 Introduction 1 Disaster Recovery to the Cloud with

More information

Oracle Clustering: Oracle 11g Real Application Clusters for Administrators

Oracle Clustering: Oracle 11g Real Application Clusters for Administrators Oracle Clustering: Oracle 11g Real Application Clusters for Administrators Duration: 40Hrs (8 Hours per Day * 5 Days) Oracle 11g Clustering Overview Introduction to Oracle 11g Clusters for Administrators

More information

Bloom Filters DOAG Webinar, 12 August 2016 Christian Antognini Senior Principal Consultant

Bloom Filters DOAG Webinar, 12 August 2016 Christian Antognini Senior Principal Consultant DOAG Webinar, 12 August 2016 Christian Antognini Senior Principal Consultant BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH STUTTGART VIENNA ZURICH

More information

Query Optimizer MySQL vs. PostgreSQL

Query Optimizer MySQL vs. PostgreSQL Percona Live, Frankfurt (DE), 7 November 2018 Christian Antognini @ChrisAntognini antognini.ch/blog BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH STUTTGART

More information

An Oracle White Paper October Siebel MAA. with Case Study on Exalogic and Exadata

An Oracle White Paper October Siebel MAA. with Case Study on Exalogic and Exadata An Oracle White Paper October 2013 Siebel MAA with Case Study on Exalogic and Exadata 1 Executive Overview... 3 2 Introduction... 4 2.1 Introduction to Engineered Systems... 4 3 Siebel Maximum Availability

More information

Designing for Performance: Database Related Worst Practices ITOUG Tech Day, 11 November 2016, Milano (I) Christian Antognini

Designing for Performance: Database Related Worst Practices ITOUG Tech Day, 11 November 2016, Milano (I) Christian Antognini Designing for Performance: Database Related Worst Practices ITOUG Tech Day, 11 November 2016, Milano (I) Christian Antognini BASLE BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN

More information

Disaster Recovery to the Oracle Cloud

Disaster Recovery to the Oracle Cloud Disaster Recovery to the Oracle Cloud Production on Premises, DR in the Cloud ORACLE WHITE PAPER APRIL 2016 Table of Contents Introduction 1 Disaster Recovery to the Cloud with Data Guard and Active Data

More information

Oracle WebLogic Server 12c: Seamless Oracle Database Integration

Oracle WebLogic Server 12c: Seamless Oracle Database Integration Oracle WebLogic Server 12c: Seamless Oracle Database Integration Yuki Moriyama - Senior Manager, NEC Corporation Monica Riccelli - Oracle WebLogic Product Management Yuuki Makita - Senior Software Engineer,

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

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

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

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

Query Optimizer MySQL vs. PostgreSQL

Query Optimizer MySQL vs. PostgreSQL Percona Live, Santa Clara (USA), 24 April 2018 Christian Antognini @ChrisAntognini antognini.ch/blog BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH

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

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

Data Guard Maximum Availability

Data Guard Maximum Availability Data Guard Maximum Availability Outage / Resolution Matrix for Zero Data Loss Protection O R A C L E W H I T E P A P E R A U G U S T 2 0 1 8 Table of Contents Table of Contents 0 Introduction 1 Maximum

More information

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

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

Configuring High Availability for the PMG DB

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

More information

ORACLE DATA GUARD REAL WORLD EXAMPLES AND TROUBLESHOOTING

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

More information

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

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

More information

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

The three investigators

The three investigators The three investigators An Introduction to OraChk, TFA and DBSAT Markus Flechtner BASLE BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH STUTTGART VIENNA ZURICH

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

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

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

More information

Oracle Database 18c New Performance Features

Oracle Database 18c New Performance Features Oracle Database 18c New Performance Features Christian Antognini @ChrisAntognini antognini.ch/blog BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH STUTTGART

More information