Maximum Availability Architecture
|
|
|
- Pauline Turner
- 10 years ago
- Views:
Transcription
1 Oracle Data Guard: Disaster Recovery for Sun Oracle Database Machine Oracle Maximum Availability Architecture White Paper April 2010 Maximum Availability Architecture Oracle Best Practices For High Availability
2 Overview... 1 Data Guard and Sun Oracle Database Machine... 2 Best Practices for Disaster Recovery... 2 Use Data Guard Redo Apply... 3 Implement Data Guard Network Best Practices... 4 Reduce Overhead and Redo Volume During ETL Operations... 8 Best Practices for Planned Maintenance Best Practices for Maximum ROI Best Practices for Migrating to Sun Oracle Database Machine Best Practices for Managing a Data Guard Configuration Conclusion References... 12
3 Overview Sun Oracle Database Machine provides an optimal solution for all database workloads, ranging from scan-intensive data warehouse applications to highly concurrent OLTP applications. With its combination of smart Oracle Exadata Storage Server Software, complete and intelligent Oracle Database software, and the latest industry standard hardware components from Sun, the Database Machine delivers extreme performance in a highly available and highly secure environment. Oracle Data Guard is Oracle s disaster recovery solution prescribed by the Maximum Availability Architecture (MAA) to protect mission critical databases residing on Sun Oracle Database Machine and the Exadata Storage Server. Using Data Guard is also the MAA best practice for minimizing planned downtime by upgrading the Oracle Database in a rolling fashion. Data Guard is included with Oracle Database Enterprise Edition and provides the management, monitoring, and automation software to create and maintain one or more synchronized standby databases that protect data from failures, disasters, errors, and corruptions. Data Guard s native integration with the Oracle database enables the highest level of data protection. Data Guard is straightforward to implement and manage. Data Guard physical standby databases support all Oracle datatypes and features, including Exadata Hybrid Columnar Compression, and it can support the very high transaction volume driven by Sun Oracle Database Machine. Administrators can rely on the ability of a standby database to assume the production role when needed, eliminating business risk during failover. Finally, Data Guard standby databases deliver high return on investment when used for queries, reports, backups, testing, or rolling database upgrades, and other maintenance, while also providing disaster protection. 1
4 Data Guard and Sun Oracle Database Machine Oracle Data Guard is the MAA [1] best practice recommendation for Sun Oracle Database Machine for: Disaster recovery (DR). Data Guard protects against data loss and downtime should the primary site become unavailable. Continuous Oracle validation enables Data Guard to provide the best data protection for the Oracle database. Data Guard physical standby databases transparently support all Oracle datatypes, database features, and applications, and can meet the demanding performance requirements of Sun Oracle Database Machine. Database rolling upgrades. The same Data Guard standby database that is protecting the primary database can also be used to minimize planned downtime when implementing Oracle patch-sets or upgrading to new Oracle releases. Such upgrades are executed using the database rolling upgrade process. Certain migrations to Exadata storage. Data Guard is one of several approaches available from Oracle to facilitate initial migration to Sun Oracle Database Machine with minimal downtime. Standby database utilization. Maintaining a synchronized Data Guard standby database only requires a fraction of the CPU and memory available on a standby system. This leaves considerable capacity on the standby system to address other requirements increasing Return on Investment (ROI) and effectively reducing the cost of DR. This best practice paper also covers additional Data Guard considerations that apply to Sun Oracle Database Machine and Exadata Storage Server. In general, it is transparent to Data Guard whether primary and/or standby databases reside on Sun Oracle Database Machine or on other hardware, thus the brief nature of this best practice paper. Your existing knowledge of Data Guard will translate directly into what you need to know when deploying it for high availability and DR for Sun Oracle Database Machine. Best Practices for Disaster Recovery Data Guard [2] provides the management, monitoring, and automation software infrastructure to create and maintain one or more standby databases to protect Oracle data from failures, disasters, errors, and data corruptions. As users commit transactions at a primary database, Oracle generates redo records and writes them to a local online log file. Data Guard transport services automatically transmit a copy of the redo to standby database(s), either synchronously or asynchronously, where it is written to a standby redo log file. Note that redo may be transmitted 2
5 in compressed format to reduce bandwidth requirements by using the Oracle Advanced Compression Option [3]. Once the redo has been received by the standby, one of the following methods is used for synchronizing the standby database with the primary, as configured by the administrator: Redo Apply (physical standby) uses media recovery to apply changes to a standby database that is open read-only (Active Data Guard). Redo Apply maintains a block for block, exact replica of the primary database, insuring that data is protected at all times. SQL Apply (logical standby) uses the SQL Apply process to mine redo data, convert it to SQL transactions and data, and then apply the transactions to a standby database that is open readwrite. A logical standby database contains the same logical information as the primary database, although the physical organization and structure of the data can be different. Data Guard Redo Apply is the MAA best practice for disaster recovery for Sun Oracle Database Machine. To configure Redo Apply, follow Oracle Data Guard Documentation [4], Oracle High Availability Best Practices [5] and the additional best practices described in this white paper. Use Data Guard Redo Apply Redo Apply is the simplest, fastest, and most reliable method of maintaining an independent, synchronized replica of a primary database. A physical standby database applies the redo received from its primary database using the managed recovery process (MRP), which is a Data Guard aware extension of standard Oracle media recovery that is used by every Oracle database. The MRP controls the highly parallel recovery mechanism integrated in the Oracle kernel. Oracle has also implemented a number of apply performance enhancements to take advantage of the superior I/O characteristics of Sun Oracle Database Machine. Performance benchmarks conducted by Oracle have achieved standby apply rates of 290 Mbytes/second for OLTP workloads and 640 Mbytes/second for batch workloads (greater than 2 TB/hour). In general, Redo Apply performance should be sufficient for most workloads using default settings. If, however, the standby database is unable to keep pace with the rate of primary database redo generation, see the MAA best practices for tuning media recovery [6]. Tuning also requires the use of Standby Statspack, see Oracle My Support Note for details. Considerations when using Exadata Hybrid Columnar Compression Exadata Hybrid Columnar Compression (EHCC) can provide compression rates with a factor of 10x to 50x. Thus, the same table that normally requires 100 GB of disk space could require only 2 GB to 10 GB of disk space when using EHCC, depending on the data. These benefits not only translate to reduced storage requirements but also will dramatically reduce IO requests and 3
6 improve query performance. Compressed tables are still fully accessible for SQL access, including selects, updates, inserts and deletes. EHCC is an advanced feature unique to Oracle Exadata Storage Server. In a Data Guard configuration where EHCC is used, it is strongly recommended that the primary database and all standby databases also reside on Oracle Exadata storage. Using EHCC on a primary database and not on its standby database raises the following concerns: Upon switchover or failover to a non-ehcc standby, EHCC compressed tables will need to be converted to uncompressed format before they can be accessed, significantly impacting RTO. Active Data Guard cannot be used to read EHCC compressed tables on a standby system that does not support EHCC. Post role transition to a non-ehcc system, EHCC compression will not be used, even if EHCC is enabled on the standby database(s). Compared to the original primary database where EHCC was enabled, non-ehcc standby databases will require substantially higher storage capacity and will deliver less performance when in the primary database role. For best performance, storage utilization, and recovery time, if EHCC is used in a Data Guard configuration, it should be used on all primary and standby databases. Implement Data Guard Network Best Practices The standard Data Guard network best practices that are recommended for any Data Guard configuration are also applicable to Sun Oracle Database Machine. See the Oracle High Availability Best Practices [7] documentation for more details. In addition, pay special attention to the recommendations in the following sections due to the high throughput of Sun Oracle Database Machine. Use Maximum Availability Protection Mode for Zero Data Loss RPO Maximum Availability is the Data Guard protection mode that is recommended for OLTP applications having a zero data loss recover point objective (RPO). Maximum Availability uses synchronous redo transport (SYNC) where the primary database waits for the standby to confirm that redo for the current transaction has been written to disk before acknowledging commit success to the application. Data Guard 11g Release 2 synchronous transport will transmit redo to the remote standby in parallel with the local online log file I/O on the primary database. This limits the impact on 4
7 primary database performance and response time to the time required for the network round-trip (RTT) between the primary and standby databases. Maximum Availability and SYNC is recommended if round-trip network latency (RTT) between primary and standby databases is less than 5 milliseconds. Higher RTT latency may still be acceptable for applications that are not as sensitive to the impact of SYNC latency. In any case, performance testing is always recommended when deploying Maximum Availability protection mode. Use Maximum Performance Protection Mode if Performance is the Priority Maximum Performance is the Data Guard protection mode that is recommended if there is not a zero data loss RPO or if the performance impact of RTT latency is too high to use Maximum Availability. Maximum Performance uses asynchronous redo transport (ASYNC), where the primary database acknowledges commit success to the application without waiting for confirmation that the redo has been received by the standby database. Maximum Performance avoids any impact to primary database response time. The enhancements to ASYNC redo transport for Data Guard 11g also eliminate any impact on primary database throughput. This is achieved by shipping redo directly from the primary database log buffer instead of from an online redo log file (ORL), as was the case in previous releases. However, to get maximum benefit from this enhancement you must allocate enough memory to the log buffer to prevent Data Guard from having to read from the ORL (for example in the case where the volume of redo being generated by the primary database is so high that log buffers must be recycled before the redo can be shipped by Data Guard). Please refer to My Oracle Support Note for details on how to configure the optimal log buffer size. Network Configuration Standby databases can use either an Oracle RAC VIP interface or a dedicated interface. In a typical configuration, the network interface used by client connections is the same as that used by Data Guard to transmit redo between primary and standby databases. Figure 1 provides an example configuration; with both client connections and Data Guard redo transport using the NET1 (eth1) Gigabit Ethernet interface of the Sun Oracle Database Machine. Note that channel bonding is recommended for HA in the event a channel should fail. The additional channel only provides HA, there is no scalability achieved by using channel bonding. 5
8 Network Key Client Access and Data Guard Transport InfiniBand NET3 NET2 NET1 NET0 ILOM BOND0 NET3 NET2 NET1 NET0 ILOM BOND0 Database Database NET0 ILOM BOND0 Database Storage InfiniBand fabric Database Database NET0 ILOM BOND0 Database Storage InfiniBand fabric Primary Site Disaster Recovery Site FIGURE 1, DATA GUARD NETWORK CONFIGURATION Network bandwidth between primary and standby systems must be sufficient for Data Guard to transport the volume of redo generated by the primary database. Inadequate network bandwidth will result in a transport lag that can impact your RPO. If it is not possible to procure sufficient bandwidth, you can transmit redo in compressed format by using the Oracle Advanced Compression Option. This can reduce bandwidth requirements significantly depending on your workload. Refer to Data Guard 11g Release 2 documentation for information on enabling redo transport compression [8]. Refer to My Oracle Support Note for information on enabling redo transport compression for Data Guard 11g Release 1. 6
9 Configuring a Dedicated Network Interface for Data Guard Redo Transport If you find that a single Gigabit network interface is unable to handle both client and Data Guard network traffic without impacting primary database performance or RPO, consider isolating Data Guard traffic by configuring a private Gigabit network interface. This configuration is shown in Figure 2. See My Oracle Support Note for details. Network Key Client Access DG Transport InfiniBand NET3 NET2 NET1 NET0 ILOM BOND0 NET3 NET2 NET1 NET0 ILOM BOND0 Database Database NET0 ILOM BOND0 Database Storage InfiniBand fabric Database Database NET0 ILOM BOND0 Database Storage InfiniBand fabric Primary Site Disaster Recovery Site FIGURE 2, ISOLATE DATA GUARD REDO TRANSPORT FROM CLIENT ACCESS 7
10 Using InfiniBand Network for Data Guard InfiniBand IpoIB can be configured for Data Guard redo transport if you require more bandwidth than can be provided by a dedicated Gigabit network interface. This configuration is shown in Figure 3. See My Oracle Support Note for additional details. Network Key Client Access InfiniBand and DG Transport NET3 NET2 NET1 NET0 ILOM BOND0 NET3 NET2 NET1 NET0 ILOM BOND0 Database Database NET0 ILOM BOND0 Database Storage InfiniBand switch Database Database NET0 ILOM BOND0 Database Storage InfiniBand switch Primary Local Standby FIGURE 3, INCREASE BANDWIDTH AVAILABLE TO DATA GUARD BY USING INFINIBAND Reduce Overhead and Redo Volume During ETL Operations Many customers using Sun Oracle Database Machine will do so for Data Warehouse applications having high-volume load operations. Often there is extensive processing performed during extract, transform, and load (ETL) operations where interim results are stored in the database, and then final results are loaded into permanent tables. There is often no need to protect the interim results. If the job fails, it is resubmitted after the problem has been corrected. The standard best practice for Data Guard configurations is to enable FORCE LOGGING at the database level (ALTER DATABASE FORCE LOGGING;) to ensure that all transactions are protected. However, placing the primary database in force logging mode for ETL operations 8
11 can lead to unnecessary database overhead and extra processing by Data Guard to protect interim results that do not require protection. MAA best practices call for isolating data that does not need to be protected by the standby database into their own tablespaces. Such data would include: Data resulting from temporary loads Data resulting from transient transformations Any non critical data To reduce unnecessary redo generation, do the following: Specifiy FORCE LOGGING for all tablespaces that you explicitly wish to protect (ALTER TABLESPACE <name> FORCE LOGGING;) Specify NO FORCE LOGGING for those tablespaces that do not need protection (ALTER TABLESPACE <name> NO FORCE LOGGING;). Disable force logging at the database level (ALTER DATABASE NO FORCE LOGGING;) otherwise the database level settings will override the tablespace settings. Once the above is done, redo logging will function as follows: Explicit no logging operations on objects in the no logging tablespace will not generate the normal redo (a small amount of redo is always generated for no logging operations to signal that a no logging operation was performed). All other operations on objects in the no logging tablespace will generate the normal redo. Operations performed on objects in the force logging tablespaces always generate normal redo. Note: Take care when setting NO FORCE LOGGING at the tablespace level to avoid unintended nologging operations. Since the database level setting has been removed, new tablespaces added to the database will by default allow no logging operations. You must enable or disable force logging on all new tablespaces as required. If space is needed at the standby database, then remove and exclude non-logged datafiles from recovery by using the ALTER DATABASE DATAFILE OFFLINE DROP statement. The above procedure has no impact on normal Data Guard operation or Data Guard role transitions. Post role transition, there is minimal maintenance to recreate the objects in the no logging tablespace at the new primary database, if needed. 9
12 Best Practices for Planned Maintenance Use a Data Guard standby database to reduce downtime and risk for many kinds of planned maintenance for Sun Oracle Database Machine. The general approach is to implement changes on the standby database, test the changes, and then perform a switchover. Maintenance that does not involve differences in Oracle versions or changes to the logical structure of the database can use Redo Apply. Upgrading to new Oracle Database releases or patchsets or changing the logical structure of a database can be accomplished in rolling fashion using SQL Apply with a physical standby database using the transient logical standby rolling upgrade process [9]. An example of using a Data Guard standby database to minimize planned downtime is migrating/upgrading from HP Oracle Database Machine running Oracle Database 11g Release 1, to SUN Oracle Database Machine running Oracle Database 11g Release 2. The upgrade of the Oracle Database and the complete replacement of the hardware platform are executed with less than 5 minutes of total downtime. For details, see My Oracle Support Note Best Practices for Maximum ROI Use your standby database systems to maximize return on investment. Maintaining a synchronized Data Guard standby database only requires a fraction of the CPU and memory available on the standby system. This leaves considerable capacity on the standby system to address other requirements increasing ROI and effectively reducing the cost of DR. The MAA best practices recommend the following methods for effective use of your standby systems. Use Active Data Guard to offload read-only workload to an active standby database to improve primary database performance and increase ROI while the standby database also provides DR. Use the standby database of offload backups from the primary database. Use Active Data Guard to offload fast incremental backups from the primary database. Use Data Guard Snapshot Standby to dual-purpose the standby database for pre-production testing while it also provides DR. The standby database is often an ideal environment for final testing before implementing changes in production. Data Guard Snapshot Standby is also an ideal complement to Oracle Real Application Testing [10]. Use a single Sun Oracle Database Machine as a standby hub, in which it functions as a shared resource hosting multiple standby databases for primary databases located in two or more data centers. This consolidation strategy reduces DR cost based on the premise that there is a low likelihood of multiple simultaneous site failures. 10
13 Deploy production databases on Sun Oracle Database Machines in both your primary and DR sites, thus transforming all data centers into primary sites. In this configuration, each site hosts standby databases for the primary databases deployed at the other site, increasing system utilization while reducing the overall impact of an individual site failure. Beyond the loadbalancing benefits, this strategy insures that all sites are truly capable of running production at failover time given that their normal routine is to function as a production site 24x365. While there may be constraints that inhibit easily adopting this strategy, the payback is significant. Best Practices for Migrating to Sun Oracle Database Machine There are a number of options for migrating from legacy storage to Sun Oracle Database Machine. See the MAA best practices Sun Oracle Database Machine - Oracle Database 11g Release 2 Migration [11] to determine the best migration strategy for your application service levels, attributes and for optimal performance. Several of the options described in the best practice paper use a Data Guard standby database for migration. Best Practices for Managing a Data Guard Configuration Oracle Enterprise Manager Grid Control makes use of the underlying services of the Data Guard broker to simplify the creation and management of a Data Guard configuration. Wizards are used for easy instantiation of a standby database. A mouse-click invokes database switchover and failover operations, or you can configure automatic failover (Data Guard Fast-Start Failover) if preferred. Enterprise Manager consolidates the reporting of key Data Guard metrics such as apply lag, transport lag, redo rate and configuration status in a single window called the HA Console. Grid Control also enables historical trend analysis on the Data Guard metrics that it monitors - for example, how the metric s performance has been in the last 24 hrs, or the last 5 days, and so on. Also, through Enterprise Manager, it is possible to set up notification alarms such that administrators are notified in case a metric crosses the configured threshold value. The Data Guard broker [12] is a distributed management framework that is included with Data Guard and is required by Enterprise Manager Grid Control. Administrators, if they prefer, may also interact directly with the broker using the broker s command line interface (DGMGRL). 11
14 Conclusion Data Guard Redo Apply is the simplest, fastest and most reliable solution for maintaining an independent, synchronized physical replica of the Oracle Database for DR purposes. Data Guard: Provides unique levels of data protection and availability and is the only DR technology able to support the very high transaction volumes driven by Sun Oracle Database Machine. Is truly a drop-in solution for the Oracle Database. Data Guard Redo Apply is the only Oracle-aware DR technology that natively supports all Oracle datatypes and database features. Is a tool for minimizing planned downtime, and can be used to migrate to Sun Oracle Database Machine and to execute database upgrades in rolling fashion. Has very few special considerations that need to be made when using Data Guard with Sun Oracle Database Machine. You can directly leverage past Data Guard knowledge and experience as you upgrade to this high performance platform. Offers a number of deployment options, including Active Data Guard, for productively using standby systems while in standby role, yielding high return on investment. Data Guard is Oracle s DR solution prescribed by the Maximum Availability Architecture (MAA) to protect mission critical databases residing on Sun Oracle Database Machine and the Exadata Storage Server. References 1. Oracle Maximum Availability Architecture 2. Data Guard Technical Information 3. Oracle Advanced Compression Option 4. Data Guard Concepts and Administration Creating a Physical Standby Database 5. Oracle Database High Availability Best Practices 6. Oracle Active Data Guard MAA Best Practices (includes Redo Apply tuning) 12
15 7. Data Guard Network Configuration MAA Best Practices 8. Data Guard Redo Transport Compression, Oracle Database 11g Release Transient Logical Rolling Upgrade Best Practices Real Application Testing sting_11g.pdf 11. Best Practices for Migrating to Oracle Exadata Storage Server Data Guard Broker Concepts and Administration Data Guard Compared to Remote-Mirroring 13
16 Oracle Data Guard: Disaster Recovery for Sun Oracle Database Machine April 2010 Authors: Joseph Meeks, Larry Carpenter, Michael Smith Contributing Authors: MAA team Oracle Corporation World Headquarters 500 Oracle Parkway Redwood Shores, CA U.S.A. Worldwide Inquiries: Phone: Fax: oracle.com Copyright 2010, Oracle and/or its affiliates. All rights reserved. This document is provided for information purposes only and the contents hereof are subject to change without notice. This document is not warranted to be error-free, nor subject to any other warranties or conditions, whether expressed orally or implied in law, including implied warranties and conditions of merchantability or fitness for a particular purpose. We specifically disclaim any liability with respect to this document and no contractual obligations are formed either directly or indirectly by this document. This document may not be reproduced or transmitted in any form or by any means, electronic or mechanical, for any purpose, without our prior written permission. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. 0109
Maximum Availability Architecture
Oracle Data Guard: Disaster Recovery for Oracle Exadata Database Machine Oracle Maximum Availability Architecture White Paper April 2012 Maximum Availability Architecture Oracle Best Practices For High
Disaster Recovery for Oracle Database
Disaster Recovery for Oracle Database Zero Data Loss Recovery Appliance, Active Data Guard and Oracle GoldenGate ORACLE WHITE PAPER APRIL 2015 Overview Oracle Database provides three different approaches
Maximum Availability Architecture. Oracle Best Practices For High Availability
Preventing, Detecting, and Repairing Block Corruption: Oracle Database 11g Oracle Maximum Availability Architecture White Paper May 2012 Maximum Availability Architecture Oracle Best Practices For High
An Oracle White Paper May 2011. Exadata Smart Flash Cache and the Oracle Exadata Database Machine
An Oracle White Paper May 2011 Exadata Smart Flash Cache and the Oracle Exadata Database Machine Exadata Smart Flash Cache... 2 Oracle Database 11g: The First Flash Optimized Database... 2 Exadata Smart
An Oracle White Paper November 2010. Oracle Real Application Clusters One Node: The Always On Single-Instance Database
An Oracle White Paper November 2010 Oracle Real Application Clusters One Node: The Always On Single-Instance Database Executive Summary... 1 Oracle Real Application Clusters One Node Overview... 1 Always
Oracle Recovery Manager 10g. An Oracle White Paper November 2003
Oracle Recovery Manager 10g An Oracle White Paper November 2003 Oracle Recovery Manager 10g EXECUTIVE OVERVIEW A backup of the database may be the only means you have to protect the Oracle database from
An Oracle White Paper January 2013. A Technical Overview of New Features for Automatic Storage Management in Oracle Database 12c
An Oracle White Paper January 2013 A Technical Overview of New Features for Automatic Storage Management in Oracle Database 12c TABLE OF CONTENTS Introduction 2 ASM Overview 2 Total Storage Management
Oracle Active Data Guard
Oracle Active Data Guard Real-Time Data Protection and Availability ORACLE WHITE PAPER OCTOBER 2015 Table of Contents Introduction 1 Oracle Active Data Guard An Overview 2 How Data Guard Synchronizes Standby
An Oracle White Paper March 2014. Oracle Data Guard Broker. Best Practices for Configuring Redo Transport for Data Guard and Active Data Guard 12c
An Oracle White Paper March 2014 Oracle Data Guard Broker Best Practices for Configuring Redo Transport for Data Guard and Active Data Guard 12c Introduction... 1 Broker Redo Transport Configuration Properties...
Oracle Real-Time Scheduler Benchmark
An Oracle White Paper November 2012 Oracle Real-Time Scheduler Benchmark Demonstrates Superior Scalability for Large Service Organizations Introduction Large service organizations with greater than 5,000
An Oracle White Paper June 2012. High Performance Connectors for Load and Access of Data from Hadoop to Oracle Database
An Oracle White Paper June 2012 High Performance Connectors for Load and Access of Data from Hadoop to Oracle Database Executive Overview... 1 Introduction... 1 Oracle Loader for Hadoop... 2 Oracle Direct
SUN ORACLE EXADATA STORAGE SERVER
SUN ORACLE EXADATA STORAGE SERVER KEY FEATURES AND BENEFITS FEATURES 12 x 3.5 inch SAS or SATA disks 384 GB of Exadata Smart Flash Cache 2 Intel 2.53 Ghz quad-core processors 24 GB memory Dual InfiniBand
An Oracle White Paper September 2011. Oracle Exadata Database Machine - Backup & Recovery Sizing: Tape Backups
An Oracle White Paper September 2011 Oracle Exadata Database Machine - Backup & Recovery Sizing: Tape Backups Table of Contents Introduction... 3 Tape Backup Infrastructure Components... 4 Requirements...
Oracle Maximum Availability Architecture with Exadata Database Machine. Morana Kobal Butković Principal Sales Consultant Oracle Hrvatska
Oracle Maximum Availability Architecture with Exadata Database Machine Morana Kobal Butković Principal Sales Consultant Oracle Hrvatska MAA is Oracle s Availability Blueprint Oracle s MAA is a best practices
SUN ORACLE DATABASE MACHINE
SUN ORACLE DATABASE MACHINE FEATURES AND FACTS FEATURES From 1 to 8 database servers From 1 to 14 Sun Oracle Exadata Storage Servers Each Exadata Storage Server includes 384 GB of Exadata Smart Flash Cache
An Oracle White Paper January 2012. Advanced Compression with Oracle Database 11g
An Oracle White Paper January 2012 Advanced Compression with Oracle Database 11g Oracle White Paper Advanced Compression with Oracle Database 11g Introduction... 3 Oracle Advanced Compression... 4 Compression
Top Ten Reasons for Deploying Oracle Virtual Networking in Your Data Center
Top Ten Reasons for Deploying Oracle Virtual Networking in Your Data Center Expect enhancements in performance, simplicity, and agility when deploying Oracle Virtual Networking in the data center. ORACLE
Oracle SQL Developer Migration. An Oracle White Paper September 2008
Oracle SQL Developer Migration An Oracle White Paper September 2008 Oracle SQL Developer Migration Overview... 3 Introduction... 3 Supported Databases... 4 Architecture... 4 Migration... 4 Standard Migrate...
An Oracle White Paper November 2010. Backup and Recovery with Oracle s Sun ZFS Storage Appliances and Oracle Recovery Manager
An Oracle White Paper November 2010 Backup and Recovery with Oracle s Sun ZFS Storage Appliances and Oracle Recovery Manager Introduction...2 Oracle Backup and Recovery Solution Overview...3 Oracle Recovery
SUN ORACLE DATABASE MACHINE
SUN ORACLE DATABASE MACHINE FEATURES AND FACTS FEATURES From 2 to 8 database servers From 3 to 14 Sun Oracle Exadata Storage Servers Up to 5.3 TB of Exadata QDR (40 Gb/second) InfiniBand Switches Uncompressed
Case Study: Oracle E-Business Suite with Data Guard Across a Wide Area Network
Case Study: Oracle E-Business Suite with Data Guard Across a Wide Area Network Data Guard is a complete, reliable, DR solution for the mission critical 5.5TB database that supports Oracle s global business
An Oracle Technical White Paper October 2011. Oracle Data Guard 11g Data Protection and Availability for Oracle Database
An Oracle Technical White Paper October 2011 Oracle Data Guard 11g Data Protection and Availability for Oracle Database Introduction... 1 Oracle Data Guard 11g - Overview... 2 How Data Guard Works Technical
An Oracle White Paper May 2012. Oracle Database Cloud Service
An Oracle White Paper May 2012 Oracle Database Cloud Service Executive Overview The Oracle Database Cloud Service provides a unique combination of the simplicity and ease of use promised by Cloud computing
Oracle Data Guard OTN Case Study SWEDISH POST
Oracle Data Guard OTN Case Study SWEDISH POST Corporate Profile Annual revenue EUR 2.5 billion 40,000 employees Serving 3 million homes and 800.000 businesses daily url: http://www.posten.se Disaster Recovery
Oracle Hyperion Financial Management Virtualization Whitepaper
Oracle Hyperion Financial Management Virtualization Whitepaper Oracle Hyperion Financial Management Virtualization Whitepaper TABLE OF CONTENTS Overview... 3 Benefits... 4 HFM Virtualization testing...
Oracle Utilities Mobile Workforce Management Benchmark
An Oracle White Paper November 2012 Oracle Utilities Mobile Workforce Management Benchmark Demonstrates Superior Scalability for Large Field Service Organizations Introduction Large utility field service
An Oracle White Paper Released Sept 2008
Performance and Scalability Benchmark: Siebel CRM Release 8.0 Industry Applications on HP BL460c/BL680c Servers running Microsoft Windows Server 2008 Enterprise Edition and SQL Server 2008 (x64) An Oracle
An Oracle White Paper July 2014. Oracle ACFS
An Oracle White Paper July 2014 Oracle ACFS 1 Executive Overview As storage requirements double every 18 months, Oracle customers continue to deal with complex storage management challenges in their data
Next Generation Siebel Monitoring: A Real World Customer Experience. An Oracle White Paper June 2010
Next Generation Siebel Monitoring: A Real World Customer Experience An Oracle White Paper June 2010 Next Generation Siebel Monitoring: A Real World Customer Experience Table of Contents Introduction...
Driving Down the High Cost of Storage. Pillar Axiom 600
Driving Down the High Cost of Storage Pillar Axiom 600 Accelerate Initial Time to Value, and Control Costs over the Long Term Make a storage investment that will pay off in rapid time to value and low
Managed Storage Services
An Oracle White Paper January 2014 Managed Storage Services Designed to Meet Your Custom Needs for Availability, Reliability and Security A complete Storage Solution Oracle Managed Cloud Services (OMCS)
An Oracle White Paper March 2012. Backup and Recovery Strategies for the Oracle Database Appliance
An Oracle White Paper March 2012 Backup and Recovery Strategies for the Oracle Database Appliance 1 Oracle Database Appliance The Oracle Database Appliance is an engineered-system; a pre-configured bundle
ORACLE BUSINESS INTELLIGENCE, ORACLE DATABASE, AND EXADATA INTEGRATION
ORACLE BUSINESS INTELLIGENCE, ORACLE DATABASE, AND EXADATA INTEGRATION EXECUTIVE SUMMARY Oracle business intelligence solutions are complete, open, and integrated. Key components of Oracle business intelligence
Running Oracle s PeopleSoft Human Capital Management on Oracle SuperCluster T5-8 O R A C L E W H I T E P A P E R L A S T U P D A T E D J U N E 2 0 15
Running Oracle s PeopleSoft Human Capital Management on Oracle SuperCluster T5-8 O R A C L E W H I T E P A P E R L A S T U P D A T E D J U N E 2 0 15 Table of Contents Fully Integrated Hardware and Software
An Oracle White Paper March 2014. Best Practices for Real-Time Data Warehousing
An Oracle White Paper March 2014 Best Practices for Real-Time Data Warehousing Executive Overview Today s integration project teams face the daunting challenge that, while data volumes are exponentially
INCREASING EFFICIENCY WITH EASY AND COMPREHENSIVE STORAGE MANAGEMENT
INCREASING EFFICIENCY WITH EASY AND COMPREHENSIVE STORAGE MANAGEMENT UNPRECEDENTED OBSERVABILITY, COST-SAVING PERFORMANCE ACCELERATION, AND SUPERIOR DATA PROTECTION KEY FEATURES Unprecedented observability
Mission-Critical Java. An Oracle White Paper Updated October 2008
Mission-Critical Java An Oracle White Paper Updated October 2008 Mission-Critical Java The Oracle JRockit family of products is a comprehensive portfolio of Java runtime solutions that leverages the base
Daniela Milanova Senior Sales Consultant
Daniela Milanova Senior Sales Consultant Oracle Disaster Recovery Solution What is Data Guard? Management, monitoring and automation software infrastructure that protects data against failure, errors,
Evolution from the Traditional Data Center to Exalogic: An Operational Perspective
An Oracle White Paper July, 2012 Evolution from the Traditional Data Center to Exalogic: 1 Disclaimer The following is intended to outline our general product capabilities. It is intended for information
Oracle SQL Developer Migration
An Oracle White Paper May 2010 Oracle SQL Developer Migration Overview... 3 Introduction... 3 Oracle SQL Developer: Architecture and Supported Platforms... 3 Supported Platforms... 4 Supported Databases...
Oracle TimesTen In-Memory Database on Oracle Exalogic Elastic Cloud
An Oracle White Paper July 2011 Oracle TimesTen In-Memory Database on Oracle Exalogic Elastic Cloud Executive Summary... 3 Introduction... 4 Hardware and Software Overview... 5 Compute Node... 5 Storage
An Oracle White Paper December 2013. Advanced Network Compression
An Oracle White Paper December 2013 Advanced Network Compression Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and may not
An Oracle White Paper July 2011. Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide
Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide An Oracle White Paper July 2011 1 Disclaimer The following is intended to outline our general product direction.
An Oracle White Paper June 2013. Oracle Real Application Clusters One Node
An Oracle White Paper June 2013 Oracle Real Application Clusters One Node Executive Overview... 1 Oracle RAC One Node 12c Overview... 2 Best In-Class Oracle Database Availability... 5 Better Oracle Database
Oracle Total Recall with Oracle Database 11g Release 2
An Oracle White Paper September 2009 Oracle Total Recall with Oracle Database 11g Release 2 Introduction: Total Recall = Total History... 1 Managing Historical Data: Current Approaches... 2 Application
Preview of Oracle Database 12c In-Memory Option. Copyright 2013, Oracle and/or its affiliates. All rights reserved.
Preview of Oracle Database 12c In-Memory Option 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
An Oracle White Paper July 2012. Expanding the Storage Capabilities of the Oracle Database Appliance
An Oracle White Paper July 2012 Expanding the Storage Capabilities of the Oracle Database Appliance Executive Overview... 2 Introduction... 2 Storage... 3 Networking... 4 Determining the best Network Port
An Oracle White Paper August 2013. Automatic Data Optimization with Oracle Database 12c
An Oracle White Paper August 2013 Automatic Data Optimization with Oracle Database 12c Introduction... 1 Storage Tiering and Compression Tiering... 2 Heat Map: Fine-grained Data Usage Tracking... 3 Automatic
An Oracle White Paper November 2010. Leveraging Massively Parallel Processing in an Oracle Environment for Big Data Analytics
An Oracle White Paper November 2010 Leveraging Massively Parallel Processing in an Oracle Environment for Big Data Analytics 1 Introduction New applications such as web searches, recommendation engines,
Why Oracle Database Runs Best on Oracle Servers and Storage. Optimize the Performance of the World s #1 Enterprise Database.
Why Oracle Database Runs Best on Oracle Servers and Storage Optimize the Performance of the World s #1 Enterprise Database. 2 Contents 4 Engineered to Work Together 6 Oracle Optimized Solutions 10 Lower
Module 14: Scalability and High Availability
Module 14: Scalability and High Availability Overview Key high availability features available in Oracle and SQL Server Key scalability features available in Oracle and SQL Server High Availability High
Batch Processing in Disaster Recovery Configurations Best Practices for Oracle Data Guard
Batch Processing in Disaster Recovery Configurations Best Practices for Oracle Data Guard Creation Date: October 20, 2008 Version: 1.0 1. Introduction IT systems and the data they contain have grown increasingly
Oracle Net Services for Oracle10g. An Oracle White Paper May 2005
Oracle Net Services for Oracle10g An Oracle White Paper May 2005 Oracle Net Services INTRODUCTION Oracle Database 10g is the first database designed for enterprise grid computing, the most flexible and
Maximum Availability Architecture. Oracle Best Practices For High Availability. Backup and Recovery Scenarios for Oracle WebLogic Server: 10.
Backup and Recovery Scenarios for Oracle WebLogic Server: 10.3 An Oracle White Paper January, 2009 Maximum Availability Architecture Oracle Best Practices For High Availability Backup and Recovery Scenarios
An Oracle White Paper June 2011. Oracle Database Firewall 5.0 Sizing Best Practices
An Oracle White Paper June 2011 Oracle Database Firewall 5.0 Sizing Best Practices Introduction... 1 Component Overview... 1 Database Firewall Deployment Modes... 2 Sizing Hardware Requirements... 2 Database
Guide to Database as a Service (DBaaS) Part 2 Delivering Database as a Service to Your Organization
Guide to Database as a Service (DBaaS) Part 2 Delivering Database as a Service to Your Organization Introduction There are often situations in which you need to spin up a new database. But in a traditional
Oracle Exadata: The World s Fastest Database Machine Exadata Database Machine Architecture
Oracle Exadata: The World s Fastest Database Machine Exadata Database Machine Architecture Ron Weiss, Exadata Product Management Exadata Database Machine Best Platform to Run the
An Oracle White Paper July 2013. Accelerating Database Infrastructure Using Oracle Real Application Clusters 11g R2 and QLogic FabricCache Adapters
An Oracle White Paper July 2013 Accelerating Database Infrastructure Using Oracle Real Application Clusters 11g R2 and QLogic FabricCache Adapters Executive Overview Thousands of companies world-wide use
Oracle Database Backup & Recovery, Flashback* Whatever, & Data Guard
18 th Annual International zseries Oracle SIG Conference Present: Oracle Database Backup & Recovery, Flashback* Whatever, & Data Guard Tammy Bednar [email protected] Manager, HA Solutions & Backup
IT CHANGE MANAGEMENT & THE ORACLE EXADATA DATABASE MACHINE
IT CHANGE MANAGEMENT & THE ORACLE EXADATA DATABASE MACHINE EXECUTIVE SUMMARY There are many views published by the IT analyst community about an emerging trend toward turn-key systems when deploying IT
An Oracle White Paper February 2009. Real-time Data Warehousing with ODI-EE Changed Data Capture
An Oracle White Paper February 2009 Real-time Data Warehousing with ODI-EE Changed Data Capture Executive Overview Today s integration project teams face the daunting challenge of deploying integrations
An Oracle White Paper July 2011. Oracle Desktop Virtualization Simplified Client Access for Oracle Applications
An Oracle White Paper July 2011 Oracle Desktop Virtualization Simplified Client Access for Oracle Applications Overview Oracle has the world s most comprehensive portfolio of industry-specific applications
EMC XtremSF: Delivering Next Generation Performance for Oracle Database
White Paper EMC XtremSF: Delivering Next Generation Performance for Oracle Database Abstract This white paper addresses the challenges currently facing business executives to store and process the growing
Automatic Service Migration in WebLogic Server An Oracle White Paper July 2008
Automatic Service Migration in WebLogic Server An Oracle White Paper July 2008 NOTE: The following is intended to outline our general product direction. It is intended for information purposes only, and
ORACLE VM MANAGEMENT PACK
ORACLE VM MANAGEMENT PACK Effective use of virtualization promises to deliver significant cost savings and operational efficiencies. However, it does pose some management challenges that need to be addressed
Migrating from Unix to Oracle on Linux. Sponsored by Red Hat. An Oracle and Red Hat White Paper September 2003
Migrating from Unix to Oracle on Linux Sponsored by Red Hat An Oracle and Red Hat White Paper September 2003 Migrating from Unix to Oracle on Linux Executive Overview... 3 Unbreakable Linux and Low-Cost
DISASTER RECOVERY STRATEGIES FOR ORACLE ON EMC STORAGE CUSTOMERS Oracle Data Guard and EMC RecoverPoint Comparison
DISASTER RECOVERY STRATEGIES FOR ORACLE ON EMC STORAGE CUSTOMERS Oracle Data Guard and EMC RecoverPoint Comparison Document Control Change Record 3 Date Author Version Change Reference 15-Aug-2007 Ravi
An Oracle White Paper October 2011. Oracle Database Appliance
An Oracle White Paper October 2011 Oracle Database Appliance Introduction The Oracle Database Appliance is a new engineered system consisting of hardware and software that saves customers time and money
Oracle Database Backup Service. Secure Backup in the Oracle Cloud
Oracle Database Backup Service Secure Backup in the Oracle Cloud Today s organizations are increasingly adopting cloud-based IT solutions and migrating on-premises workloads to public clouds. The motivation
An Oracle White Paper December 2013. Exadata Smart Flash Cache Features and the Oracle Exadata Database Machine
An Oracle White Paper December 2013 Exadata Smart Flash Cache Features and the Oracle Exadata Database Machine Flash Technology and the Exadata Database Machine... 2 Oracle Database 11g: The First Flash
An Oracle White Paper September 2013. Advanced Java Diagnostics and Monitoring Without Performance Overhead
An Oracle White Paper September 2013 Advanced Java Diagnostics and Monitoring Without Performance Overhead Introduction... 1 Non-Intrusive Profiling and Diagnostics... 2 JMX Console... 2 Java Flight Recorder...
Rapid Bottleneck Identification A Better Way to do Load Testing. An Oracle White Paper June 2009
Rapid Bottleneck Identification A Better Way to do Load Testing An Oracle White Paper June 2009 Rapid Bottleneck Identification A Better Way to do Load Testing. RBI combines a comprehensive understanding
Introduction. Automated Discovery of IT assets
ORACLE DATABASE LIFECYCLE MANAGEMENT PACK ORACLE DATABASE LIFECYCLE MANAGEMENT PACK KEY FEATURES Auto Discovery of hosts and databases Inventory tracking and reporting Database provisioning Schema and
Exadata and Database Machine Administration Seminar
Oracle University Contact Us: 1.800.529.0165 Exadata and Database Machine Administration Seminar Duration: 2 Days What you will learn The first section of this course introduces you to Exadata Storage
Oracle Active Data Guard Far Sync Zero Data Loss at Any Distance
Oracle Active Data Guard Far Sync Zero Data Loss at Any Distance Oracle Maximum Availability Architecture Best Practices 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 4 Table of Contents Introduction
Configuring Oracle SDN Virtual Network Services on Netra Modular System ORACLE WHITE PAPER SEPTEMBER 2015
Configuring Oracle SDN Virtual Network Services on Netra Modular System ORACLE WHITE PAPER SEPTEMBER 2015 Introduction 1 Netra Modular System 2 Oracle SDN Virtual Network Services 3 Configuration Details
Oracle Database 11g Direct NFS Client. An Oracle White Paper July 2007
Oracle Database 11g Direct NFS Client An Oracle White Paper July 2007 NOTE: The following is intended to outline our general product direction. It is intended for information purposes only, and may not
An Oracle White Paper July 2014. Oracle Database 12c: Meeting your Performance Objectives with Quality of Service Management
An Oracle White Paper July 2014 Oracle Database 12c: Meeting your Performance Objectives with Quality of Service Management Introduction... 1 Overview of Oracle Database QoS Management... 1 Benefits of
Real-time Data Replication
Real-time Data Replication from Oracle to other databases using DataCurrents WHITEPAPER Contents Data Replication Concepts... 2 Real time Data Replication... 3 Heterogeneous Data Replication... 4 Different
Ensuring Web Service Quality for Service-Oriented Architectures. An Oracle White Paper June 2008
Ensuring Web Service Quality for Service-Oriented Architectures An Oracle White Paper June 2008 Ensuring Web Service Quality for Service-Oriented Architectures WEB SERVICES OFFER NEW OPPORTUNITIES AND
Backup and Recovery Solutions for Exadata. Cor Beumer Storage Sales Specialist Oracle Nederland
Backup and Recovery Solutions for Exadata Cor Beumer Storage Sales Specialist Oracle Nederland Recovery Point and Recovery Time Wks Days Hrs Mins Secs Secs Mins Hrs Days Wks Data Loss (Recovery Point Objective)
ORACLE DATA INTEGRATOR ENTERPRISE EDITION
ORACLE DATA INTEGRATOR ENTERPRISE EDITION Oracle Data Integrator Enterprise Edition 12c delivers high-performance data movement and transformation among enterprise platforms with its open and integrated
Online Transaction Processing in SQL Server 2008
Online Transaction Processing in SQL Server 2008 White Paper Published: August 2007 Updated: July 2008 Summary: Microsoft SQL Server 2008 provides a database platform that is optimized for today s applications,
An Oracle White Paper February 2014. Oracle Data Integrator 12c Architecture Overview
An Oracle White Paper February 2014 Oracle Data Integrator 12c Introduction Oracle Data Integrator (ODI) 12c is built on several components all working together around a centralized metadata repository.
Oracle Big Data Appliance: Datacenter Network Integration
An Oracle White Paper May 2012 Oracle Big Data Appliance: Datacenter Network Integration Disclaimer The following is intended to outline our general product direction. It is intended for information purposes
ORACLE EXADATA DATABASE MACHINE X2-8
ORACLE EXADATA DATABASE MACHINE X2-8 FEATURES AND FACTS FEATURES 128 CPU cores and 2 TB of memory for database processing 168 CPU cores for storage processing 2 database servers 14 Oracle Exadata Storage
Express Implementation for Electric Utilities
ORACLE UTILITIES Customer Care and Billing Express Implementation for Electric Utilities An Professional Services Offering The Electricity Business Is Changing Today s electric utility finds it almost
Eloquence Training What s new in Eloquence B.08.00
Eloquence Training What s new in Eloquence B.08.00 2010 Marxmeier Software AG Rev:100727 Overview Released December 2008 Supported until November 2013 Supports 32-bit and 64-bit platforms HP-UX Itanium
Disaster Recovery to the Oracle Public Cloud
Disaster Recovery to the Oracle Public Cloud Production on Premises, DR in the Cloud ORACLE WHITE PAPER AUGUST 2015 Table of Contents Introduction 1 Disaster Recovery to the Cloud with Data Guard and Active
Oracle Enterprise Single Sign-on Technical Guide An Oracle White Paper June 2009
Oracle Enterprise Single Sign-on Technical Guide An Oracle White Paper June 2009 EXECUTIVE OVERVIEW Enterprises these days generally have Microsoft Windows desktop users accessing diverse enterprise applications
Oracle Primavera Gateway
Oracle Primavera Gateway Disclaimer 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
Oracle Database Disaster Recovery Using Dell Storage Replication Solutions
Oracle Database Disaster Recovery Using Dell Storage Replication Solutions This paper describes how to leverage Dell storage replication technologies to build a comprehensive disaster recovery solution
ORACLE EXADATA STORAGE SERVER X2-2
ORACLE EXADATA STORAGE SERVER X2-2 KEY FEATURES AND BENEFITS FEATURES 12 x 3.5 inch High Performance or High Capacity SAS disks 384 GB of Exadata Smart Flash Cache 12 CPU cores dedicated to SQL processing
An Oracle White Paper October 2013. Realizing the Superior Value and Performance of Oracle ZFS Storage Appliance
An Oracle White Paper October 2013 Realizing the Superior Value and Performance of Oracle ZFS Storage Appliance Executive Overview... 2 Introduction... 3 Delivering Superior Performance at a Lower Price...
An Oracle White Paper March 2010. Oracle Transparent Data Encryption for SAP
An Oracle White Paper March 2010 Oracle Transparent Data Encryption for SAP Introduction Securing sensitive customer data has become more and more important in the last years. One possible threat is confidential
Oracle Database Cloud Exadata Service
Oracle Database Cloud Exadata Service Exadata Performance, Cloud Simplicity The Oracle Database Cloud - Exadata Service (Exadata Service) delivers the world s best Cloud Database Platform by combining
Oracle Exadata Database Machine Aké jednoznačné výhody prináša pre finančné inštitúcie
Oracle Exadata Database Machine Aké jednoznačné výhody prináša pre finančné inštitúcie Gabriela Hečková Technology Sales Consultant, Engineered Systems Oracle Slovensko Copyright 2014 Oracle and/or its
Oracle BI Publisher Enterprise Cluster Deployment. An Oracle White Paper August 2007
Oracle BI Publisher Enterprise Cluster Deployment An Oracle White Paper August 2007 Oracle BI Publisher Enterprise INTRODUCTION This paper covers Oracle BI Publisher cluster and high availability deployment.
Exadata Database Machine Administration Workshop NEW
Exadata Database Machine Administration Workshop NEW Duration: 4 Days What you will learn This course introduces students to Oracle Exadata Database Machine. Students learn about the various Exadata Database
