Deploying MySQL with the Oracle ZFS Storage Appliance

Size: px
Start display at page:

Download "Deploying MySQL with the Oracle ZFS Storage Appliance"

Transcription

1 Deploying MySQL with the Oracle ZFS Storage Appliance Paul Johnson Principal Software Engineer Robert Cummins Principal Software Engineer John Zabriskie Software Engineer John Baton Software Engineer

2 Table of Contents Introduction 1 Provisioning the Oracle ZFS Storage Appliance 2 Log in to the Browser User Interface 2 Creating a Project 3 Creating Shares 5 Modify Database Record Size 7 Provisioning Oracle Linux 7 9 Terminal 9 Create a Directory Structure 9 Edit /etc/fstab for the New Shares 9 Mount the Shares 9 MySQL Configuration 10 my.cnf Configuration 10 Initialize MySQL and Create a Database 11 Populate and Stress the Database with SysBench 11 Monitor Progress and Performance Using ZFS Storage Analytics 13 Navigate to the Analytics section 13 Add a Statistic 13 Backup MySQL Using ZFS Snapshots and Clones 16 Open a New Terminal 16 Create a Project Snapshot 16 Clone the Project Shares 17 Additional Links 22 HOL DEPLOYING MYSQL WITH THE ORACLE ZFS STORAGE APPLIANCE

3 Introduction This in-depth hands-on lab demonstrates how to install and manage MySQL with Oracle ZFS Storage Appliance. You ll learn how to correctly tweak MySQL's database configuration to maximize performance over protocols such as Fibre Channel, iscsi, and NFS. In addition, you ll learn how easy it is to use the Oracle ZFS Storage Appliance software to configure services, create and use storage shares, and monitor database performance with Oracle ZFS Storage Appliance analytics. 1 HOL DEPLOYING MYSQL WITH THE ORACLE ZFS STORAGE APPLIANCE

4 Provisioning the Oracle ZFS Storage Appliance Log in to the Browser User Interface 1. Open a web browser by double-clicking on the Firefox icon on the desktop. 2. Enter into web browser window. 3. In the web browser, enter oow as Username and oow as Password, then press the LOGIN button. 2 HOL DEPLOYING MYSQL WITH THE ORACLE ZFS STORAGE APPLIANCE

5 4. The Oracle ZFS Storage Appliance Status Dashboard will be displayed. Creating a Project A project is a collection of filesystems and LUNs that share the same common settings. By grouping all shares into the same project, the management of the storage becomes simplified. 1. Begin by clicking on Shares on the top toolbar. 2. Click on PROJECTS on the right side then click on + on the left side to create a new project. 3 HOL DEPLOYING MYSQL WITH THE ORACLE ZFS STORAGE APPLIANCE

6 3. Name the project HOL Once the project has been created, edit the HOL9760 project by selecting the pencil icon on the left side of the screen. 5. With the HOL9760 project opened, select General at the top to view the project settings. 6. The following changes will need to be made: a. Mountpoint should be /export/hol9760 b. Update access time on read should be deselected c. User should be d. Group should be e. Select RWX permissions for Group and Other to turn the icons orange 4 HOL DEPLOYING MYSQL WITH THE ORACLE ZFS STORAGE APPLIANCE

7 7. Click Apply at the top right. Creating Shares The MySQL tablespace will be stored on the Oracle ZFS Storage Appliance Simulator. There will need to be two shares created to store the data and log files. 5 HOL DEPLOYING MYSQL WITH THE ORACLE ZFS STORAGE APPLIANCE

8 1. Click on Shares next to General to begin creation. Do not click Shares on the top toolbar as this will deselect the current project. 2. Click the + button to create a new file-system. 3. Create a share called innodb-data and click Apply. 6 HOL DEPLOYING MYSQL WITH THE ORACLE ZFS STORAGE APPLIANCE

9 4. Create a share called innodb-log and click Apply. You should now have two shares created: innodb-data and innodb-log. Modify Database Record Size 1. Edit the innodb-data share by clicking on the pencil icon. 2. Under Properties, locate Database record size. Click on the lock icon to unlock and select 16K. 7 HOL DEPLOYING MYSQL WITH THE ORACLE ZFS STORAGE APPLIANCE

10 3. Click Apply at the top right. 8 HOL DEPLOYING MYSQL WITH THE ORACLE ZFS STORAGE APPLIANCE

11 Provisioning Oracle Linux 7 The binaries for MySQL have already been preinstalled on the Oracle Linux 7 VM. Terminal Open a new terminal session by double-clicking on the Terminal icon on the desktop: Create a Directory Structure Each of the shares created on the storage will need a local directory to contain the mounts on the Oracle Linux 7 VM. Please use the following locations: $ sudo mkdir -p /zfssa/hol9760/innodb-data $ sudo mkdir -p /zfssa/hol9760/innodb-log Edit /etc/fstab for the New Shares The entries have already been populated inside of /etc/fstab. $ cat /etc/fstab # MySQL Lab :/export/HOL9760/innodb-data /zfssa/hol9760/innodb-data nfs rw,bg,hard,nointr,rsize= ,wsize= ,tcp,vers=3,timeo=600,noac,nolock :/export/HOL9760/innodb-log /zfssa/hol9760/innodb-log nfs rw,bg,hard,nointr,rsize= ,wsize= ,tcp,vers=3,timeo=600,noac,nolock 0 0 Mount the Shares $ sudo mount -a 9 HOL DEPLOYING MYSQL WITH THE ORACLE ZFS STORAGE APPLIANCE

12 MySQL Configuration my.cnf Configuration The following configuration is used for this hands-on lab. Certain buffer and log sizes have been scaled back to meet the limited resources of this virtual environment. $ cat /etc/my.cnf [client] port = 3306 socket = /var/lib/mysql/mysql.sock [mysqld] user = mysql group_concat_max_len = 8192 max_allowed_packet = 64M key_buffer = 24M sort_buffer_size = 2M read_buffer_size = 2M read_rnd_buffer_size = 8M myisam_sort_buffer_size = 64M thread_cache_size = 8 query_cache_size = 0 thread_concurrency = 16 max_connections = 2048 tmp_table_size = 24M binlog_cache_size = 10M expire-logs-days = 5 skip_name_resolve innodb_file_per_table innodb_table_locks = 0 innodb_open_files = 4096 innodb_log_files_in_group = 2 innodb_thread_concurrency = 0 innodb_log_file_size = 12M innodb_buffer_pool_size = 24M innodb_additional_mem_pool_size = 64M innodb_lock_wait_timeout = 5 innodb_flush_log_at_trx_commit = 2 # ZFSSA innodb_doublewrite = 0 innodb_flush_method = O_DIRECT innodb_data_home_dir = /zfssa/hol9760/innodb-data innodb_log_group_home_dir = /zfssa/hol9760/innodb-log innodb_data_file_path = ibdatafile:24m:autoextend The following options are the most important for successful configuration with the Oracle ZFS Storage Appliance: 1. innodb_doublewrite = 0 A double write buffer is necessary in the event of partial page writes. However, the transactional nature of ZFS guarantees that partial writes will never occur. This can be safely disabled. 2. innodb_flush_method = O_DIRECT Ensures that InnoDB calls directio() instead of fcntl() for the data files. This allows the data to be accessed without OS level buffering and read-ahead. 10 HOL DEPLOYING MYSQL WITH THE ORACLE ZFS STORAGE APPLIANCE

13 3. innodb_data_home_dir = /zfssa/hol9760/innodb-data The data filesystem for InnoDB should be located on its own share or LUN on the Oracle ZFS Storage Appliance. 4. innodb_log_group_home_dir = /zfssa/hol9760/innodb-log The log filesystem for InnoDB should be located on its own share or LUN on the Oracle ZFS Storage Appliance. 5. innodb_data_file_path = ibdatafile:24m:autoextend This configures a single large tablespace for InnoDB. The ZFS controller is then responsible for managing the growth of new data. This eliminates the complexity needed for controlling multiple tablespaces. Initialize MySQL and Create a Database 1. Switch the current user to mysql. Use the password oow. $ su mysql 2. Use mysql_install_db to initialize the MySQL data directory and populate the system tables. $ mysql_install_db 3. Enable the MySQL service: $ service mysql start 4. Log in to the MySQL console. There is no password. Press return to bypass the password prompt. $ mysql u root p Enter password: 5. Create a database called HOL9760: mysql> create database HOL9760; Query OK, 1 row affected (0.00 sec) mysql> quit Populate and Stress the Database with SysBench 1. Change the directory to the SysBench scripts. $ cd /home/oow/mysql 2. Populate the database using the following script: $ cat filldb.sh #!/bin/sh sysbench \ --test=oltp \ --oltp-table-size=10000 \ --mysql-db=hol9760 \ --mysql-user=root \ --mysql-password= \ prepare $./filldb.sh 3. Run an OLTP workload using the following script: $ cat stressdb.sh #!/bin/sh 11 HOL DEPLOYING MYSQL WITH THE ORACLE ZFS STORAGE APPLIANCE

14 sysbench \ --test=oltp \ --oltp-table-size=10000 \ --oltp-test-mode=complex \ --oltp-read-only=off \ --num-threads=8 \ --max-time=3600 \ --max-requests=0 \ --mysql-db=hol9760 \ --mysql-user=root \ --mysql-password= \ --mysql-table-engine=innodb \ run $./stressdb.sh 12 HOL DEPLOYING MYSQL WITH THE ORACLE ZFS STORAGE APPLIANCE

15 Monitor Progress and Performance Using ZFS Storage Analytics Analytics is an advanced facility that you can use to graph a variety of statistics in real-time and record this data for later viewing. It has been designed for both long term monitoring and short term analysis. When needed, it makes use of DTrace to dynamically create custom statistics, which allows different layers of the operating system stack to be analyzed in detail. Navigate to the Analytics section While the database workload is running, click on the Analytics tab on the right side of the upper taskbar. Add a Statistic On the left side of the browser, click on the + icon next to Add statistic to bring up the statistic menu. The most relevant statistics for database performance analysis can be found in the NFSv3 category. 13 HOL DEPLOYING MYSQL WITH THE ORACLE ZFS STORAGE APPLIANCE

16 Analytics has been designed around an effective performance analysis technique called drill-down analysis. This involves checking high level statistics first, and to focus on finer details based on findings so far. This allows you to quickly narrow the focus to the most likely areas. 14 HOL DEPLOYING MYSQL WITH THE ORACLE ZFS STORAGE APPLIANCE

17 15 HOL DEPLOYING MYSQL WITH THE ORACLE ZFS STORAGE APPLIANCE

18 Backup MySQL Using ZFS Snapshots and Clones The snapshot and clone features of the Oracle ZFS Storage Appliance provides a convenient mechanism to backup, restore, and fork a MySQL database. A ZFS snapshot is a read-only copy of a file-system that is created instantaneously while initially occupying zero additional space. As the data of a file-system changes, the differences are tracked inside the snapshot. A ZFS clone is a writeable snapshot that can be used to branch off an existing file-system without modifying the original contents. Open a New Terminal 1. Open a new terminal session by double-clicking on the Terminal icon on the desktop: 2. Change the directory to mysql: $ cd /home/oow/mysql 3. Change your user to mysql: $ su mysql Create a Project Snapshot The MySQL database must have all its open tables closed with a read lock prior to a snapshot being created. After the snapshot has completed, the tables can be unlocked. The following python script accomplishes these MySQL tasks and creates a project level snapshot using the Oracle ZFS Storage Appliance REST interface. $ cat mysql_snapshot.py #!/usr/bin/python import MySQLdb import datetime import json import urllib2 def zfs_snapshot(): user = "oow" password = "oow" url = " " path = "/api/storage/v1/pools/oow/projects/hol9760/snapshots" url = " " + zfs + ":215" + path properties = {"name":"hol9760-snapshot"} post_data = json.dumps(properties) request = urllib2.request(url, post_data) request.add_header("content-type", "application/json") request.add_header("x-auth-user", user) request.add_header("x-auth-key", password) response = urllib2.urlopen(request) 16 HOL DEPLOYING MYSQL WITH THE ORACLE ZFS STORAGE APPLIANCE

19 def main(): mysql_server = "localhost" mysql_user = "root" mysql_pass = "" try: connection = MySQLdb.connect(host=mysql_server, user=mysql_user,passwd=mysql_pass) except MySQLdb.OperationalError: print "Could not connect to the MySQL server" sys.exit(-5) print "Connected to the MySQL server" backup = connection.cursor() start_time = datetime.datetime.now().replace(hour=0) backup.execute("set autocommit=0;") backup.execute("flush tables with read lock;") print "Creating project snapshot \"HOL9760-snapshot\"" zfs_snapshot() backup.execute("unlock tables;") finish_time = datetime.datetime.now().replace(hour=0) total_time = finish_time - start_time print "Completed in ", total_time if name == " main ": main() Run the mysql_snapshot.py script. $./mysql_snapshot.py Clone the Project Shares With the successful creation of a snapshot, you can now rollback the database to a previous state. Additionally, you can use the cloning feature to generate a newly forked database. The following steps outline this process: 1. Open the Firefox web browser. Use the username oow and password oow if the login screen for the Oracle ZFS Storage Appliance appears. 2. Click on Shares. 3. Click on Projects. 17 HOL DEPLOYING MYSQL WITH THE ORACLE ZFS STORAGE APPLIANCE

20 4. Double-click on the HOL9760 project. 5. Edit the innodb-data project by clicking on the pencil icon. 6. Click on Snapshots. 7. Under NAME, click on the + icon for the share innodb-data to create a clone. 18 HOL DEPLOYING MYSQL WITH THE ORACLE ZFS STORAGE APPLIANCE

21 8. Set the Name to innodb-data-clone and click Apply. 9. Click on Projects. 19 HOL DEPLOYING MYSQL WITH THE ORACLE ZFS STORAGE APPLIANCE

22 10. Double click on the HOL9760 project. 11. Edit the innodb-log share by clicking on the pencil icon. 12. Click on Snapshots. 13. Under NAME, click on the + icon for the share innodb-log to create a clone. 20 HOL DEPLOYING MYSQL WITH THE ORACLE ZFS STORAGE APPLIANCE

23 14. Set the Name to innodb-log-clone and click Apply. 15. On the Oracle Linux VM, create a directory structure to hold the new clones: $ sudo mkdir /zfssa/hol9760/innodb-data-clone $ sudo mkdir /zfssa/hol9760/innodb-log-clone 16. Mount the clones: $ sudo mount o rsize= ,wsize= ,tcp,vers=3,timeo=600,noac,nolock :/export/HOL9760/innodb-data-clone /zfssa/hol9760/innodb-dataclone $ sudo mount o rsize= ,wsize= ,tcp,vers=3,timeo=600,noac,nolock :/export/HOL9760/innodb-log-clone /zfssa/hol9760/innodb-log-clone The clones can now be used for a separate MySQL instance. The configuration file my.cnf can be updated to use the innodb-data-clone and innodb-log-clone for database test and development purposes. 21 HOL DEPLOYING MYSQL WITH THE ORACLE ZFS STORAGE APPLIANCE

24 Additional Links 1. VirtualBox 2. Oracle ZFS Storage Simulator html 3. Oracle Linux HOL9760 Lab Information 22 HOL DEPLOYING MYSQL WITH THE ORACLE ZFS STORAGE APPLIANCE

25 Oracle Corporation, World Headquarters Worldwide Inquiries 500 Oracle Parkway Phone: Redwood Shores, CA 94065, USA Fax: C O N N E C T W I T H U S blogs.oracle.com/oracle facebook.com/oracle twitter.com/oracle oracle.com Copyright 2014, 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 and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners. Intel and Intel Xeon are trademarks or registered trademarks of Intel Corporation. All SPARC trademarks are used under license and are trademarks or registered trademarks of SPARC International, Inc. AMD, Opteron, the AMD logo, and the AMD Opteron logo are trademarks or registered trademarks of Advanced Micro Devices. UNIX is a registered trademark of The Open Group. 0914

Deploying Oracle Database 12c with the Oracle ZFS Storage Appliance

Deploying Oracle Database 12c with the Oracle ZFS Storage Appliance Deploying Oracle Database 12c with the Oracle ZFS Storage Appliance Paul Johnson Principal Software Engineer Bryce Cracco Senior Product Manager Nagendran J Principal Software Engineer Wendy Chen Principal

More information

An Oracle White Paper July 2013. Introducing the Oracle Home User in Oracle Database 12c for Microsoft Windows

An Oracle White Paper July 2013. Introducing the Oracle Home User in Oracle Database 12c for Microsoft Windows An Oracle White Paper July 2013 Introducing the Oracle Home User Introduction Starting with Oracle Database 12c Release 1 (12.1), Oracle Database on Microsoft Windows supports the use of an Oracle Home

More information

Using Symantec NetBackup with VSS Snapshot to Perform a Backup of SAN LUNs in the Oracle ZFS Storage Appliance

Using Symantec NetBackup with VSS Snapshot to Perform a Backup of SAN LUNs in the Oracle ZFS Storage Appliance An Oracle Technical White Paper March 2014 Using Symantec NetBackup with VSS Snapshot to Perform a Backup of SAN LUNs in the Oracle ZFS Storage Appliance Introduction... 2 Overview... 3 Oracle ZFS Storage

More information

How To Load Data Into An Org Database Cloud Service - Multitenant Edition

How To Load Data Into An Org Database Cloud Service - Multitenant Edition An Oracle White Paper June 2014 Data Movement and the Oracle Database Cloud Service Multitenant Edition 1 Table of Contents Introduction to data loading... 3 Data loading options... 4 Application Express...

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Getting Started with Oracle Data Integrator 12c Virtual Machine Installation Guide December 2014 Oracle Fusion Middleware Getting Started with Oracle Data Integrator, 12c Copyright

More information

An Oracle White Paper November 2010. Oracle Business Intelligence Standard Edition One 11g

An Oracle White Paper November 2010. Oracle Business Intelligence Standard Edition One 11g An Oracle White Paper November 2010 Oracle Business Intelligence Standard Edition One 11g Introduction Oracle Business Intelligence Standard Edition One is a complete, integrated BI system designed for

More information

An Oracle White Paper March 2013. Oracle s Single Server Solution for VDI

An Oracle White Paper March 2013. Oracle s Single Server Solution for VDI An Oracle White Paper March 2013 Oracle s Single Server Solution for VDI Introduction The concept of running corporate desktops in virtual machines hosted on servers is a compelling proposition. In contrast

More information

An Oracle White Paper September 2013. Oracle WebLogic Server 12c on Microsoft Windows Azure

An Oracle White Paper September 2013. Oracle WebLogic Server 12c on Microsoft Windows Azure An Oracle White Paper September 2013 Oracle WebLogic Server 12c on Microsoft Windows Azure Table of Contents Introduction... 1 Getting Started: Creating a Single Virtual Machine... 2 Before You Begin...

More information

An Oracle White Paper June, 2012. Provisioning & Patching Oracle Database using Enterprise Manager 12c.

An Oracle White Paper June, 2012. Provisioning & Patching Oracle Database using Enterprise Manager 12c. An Oracle White Paper June, 2012 Provisioning & Patching Oracle Database using Enterprise Manager 12c. Table of Contents Executive Overview... 2 Introduction... 2 EM Readiness:... 3 Installing Agent...

More information

An Oracle White Paper June 2014. Security and the Oracle Database Cloud Service

An Oracle White Paper June 2014. Security and the Oracle Database Cloud Service An Oracle White Paper June 2014 Security and the Oracle Database Cloud Service 1 Table of Contents Overview... 3 Security architecture... 4 User areas... 4 Accounts... 4 Identity Domains... 4 Database

More information

An Oracle White Paper May 2011. Distributed Development Using Oracle Secure Global Desktop

An Oracle White Paper May 2011. Distributed Development Using Oracle Secure Global Desktop An Oracle White Paper May 2011 Distributed Development Using Oracle Secure Global Desktop Introduction One of the biggest challenges software development organizations face today is how to provide software

More information

Virtual Compute Appliance Frequently Asked Questions

Virtual Compute Appliance Frequently Asked Questions General Overview What is Oracle s Virtual Compute Appliance? Oracle s Virtual Compute Appliance is an integrated, wire once, software-defined infrastructure system designed for rapid deployment of both

More information

Oracle Financial Management Analytics

Oracle Financial Management Analytics Oracle Financial Management Analytics Oracle Financial Management Analytics provides finance executives with visibility and insight into the status of their financial close process and their financial

More information

Sun ZFS Storage Appliance Rule-Based Identity Mapping Between Active Directory and Network Information Services Implementation Guide

Sun ZFS Storage Appliance Rule-Based Identity Mapping Between Active Directory and Network Information Services Implementation Guide An Oracle White Paper February 2011 Sun ZFS Storage Appliance Rule-Based Identity Mapping Between Active Directory and Network Information Services Implementation Guide Introduction... 4 Overview and Prerequisites...

More information

An Oracle Technical White Paper May 2015. How to Configure Kaspersky Anti-Virus Software for the Oracle ZFS Storage Appliance

An Oracle Technical White Paper May 2015. How to Configure Kaspersky Anti-Virus Software for the Oracle ZFS Storage Appliance An Oracle Technical White Paper May 2015 How to Configure Kaspersky Anti-Virus Software for the Oracle ZFS Storage Appliance Table of Contents Introduction... 2 How VSCAN Works... 3 Installing Kaspersky

More information

Migration Best Practices for OpenSSO 8 and SAM 7.1 deployments O R A C L E W H I T E P A P E R M A R C H 2015

Migration Best Practices for OpenSSO 8 and SAM 7.1 deployments O R A C L E W H I T E P A P E R M A R C H 2015 Migration Best Practices for OpenSSO 8 and SAM 7.1 deployments O R A C L E W H I T E P A P E R M A R C H 2015 Disclaimer The following is intended to outline our general product direction. It is intended

More information

An Oracle White Paper July 2014. Oracle Linux and Oracle VM Remote Lab User Guide

An Oracle White Paper July 2014. Oracle Linux and Oracle VM Remote Lab User Guide An Oracle White Paper July 2014 Oracle Linux and Oracle VM Remote Lab User Guide Contents Introduction... 1 Infrastructure Requirements on the Client Side... 2 Overview of the Lab Hardware... 3 Logging

More information

An Oracle Technical White Paper January 2014. How to Configure the Trend Micro IWSA Virus Scanner for the Oracle ZFS Storage Appliance

An Oracle Technical White Paper January 2014. How to Configure the Trend Micro IWSA Virus Scanner for the Oracle ZFS Storage Appliance An Oracle Technical White Paper January 2014 How to Configure the Trend Micro IWSA Virus Scanner for the Oracle ZFS Storage Appliance Table of Contents Introduction... 2 How VSCAN Works... 3 Installing

More information

An Oracle White Paper May 2013. Creating Custom PDF Reports with Oracle Application Express and the APEX Listener

An Oracle White Paper May 2013. Creating Custom PDF Reports with Oracle Application Express and the APEX Listener An Oracle White Paper May 2013 Creating Custom PDF Reports with Oracle Application Express and the APEX Listener Disclaimer The following is intended to outline our general product direction. It is intended

More information

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

More information

An Oracle White Paper April 2010. How to Install the Oracle Solaris 10 Operating System on x86 Systems

An Oracle White Paper April 2010. How to Install the Oracle Solaris 10 Operating System on x86 Systems An Oracle White Paper April 2010 How to Install the Oracle Solaris 10 Operating System on x86 Systems Introduction... 1 Installation Assumptions... 2 Check the Hardware Compatibility List... 2 Basic System

More information

Managed Storage Services

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)

More information

March 2014. Oracle Business Intelligence Discoverer Statement of Direction

March 2014. Oracle Business Intelligence Discoverer Statement of Direction March 2014 Oracle Business Intelligence Discoverer Statement of Direction Oracle Statement of Direction Oracle Business Intelligence Discoverer Disclaimer This document in any form, software or printed

More information

Top Ten Reasons for Deploying Oracle Virtual Networking in Your Data Center

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

More information

G Cloud 7 Pricing Document

G Cloud 7 Pricing Document G Cloud 7 Pricing Document October 205 Pricing Pricing Information This is Oracle s G-Cloud 7 Pricing Document for the following service(s): Metered Usage Oracle Java Cloud Trial B78388 Not applicable

More information

An Oracle White Paper October 2011. BI Publisher 11g Scheduling & Apache ActiveMQ as JMS Provider

An Oracle White Paper October 2011. BI Publisher 11g Scheduling & Apache ActiveMQ as JMS Provider An Oracle White Paper October 2011 BI Publisher 11g Scheduling & Apache ActiveMQ as JMS Provider Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

Best Practices for Optimizing Storage for Oracle Automatic Storage Management with Oracle FS1 Series Storage ORACLE WHITE PAPER JANUARY 2015

Best Practices for Optimizing Storage for Oracle Automatic Storage Management with Oracle FS1 Series Storage ORACLE WHITE PAPER JANUARY 2015 Best Practices for Optimizing Storage for Oracle Automatic Storage Management with Oracle FS1 Series Storage ORACLE WHITE PAPER JANUARY 2015 Table of Contents 0 Introduction 1 The Test Environment 1 Best

More information

Unbreakable Linux Network An Overview

Unbreakable Linux Network An Overview An Oracle White Paper September 2011 Unbreakable Linux Network An Overview Introduction... 1 The Update Agent (yum)... 2 Channels Descriptions and Usage... 2 Switching from Red Hat Network (RHN) to ULN...

More information

An Oracle White Paper February 2014. Oracle Data Integrator 12c Architecture Overview

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.

More information

G Cloud 7 Pricing Document

G Cloud 7 Pricing Document G Cloud 7 Pricing Document October 2015 Pricing Pricing Information This is Oracle s G-Cloud 7 Pricing Document for the following service(s): Services SaaS Extension S1 Non-Metered Usage Services SaaS

More information

How to Configure Symantec Protection Engine for Network Attached Storage for the Oracle ZFS Storage Appliance

How to Configure Symantec Protection Engine for Network Attached Storage for the Oracle ZFS Storage Appliance An Oracle Technical White Paper January 2014 How to Configure Symantec Protection Engine for Network Attached Storage for the Oracle ZFS Storage Appliance Table of Contents Introduction... 3 How VSCAN

More information

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

More information

An Oracle White Paper June 2013. Oracle Linux Management with Oracle Enterprise Manager 12c

An Oracle White Paper June 2013. Oracle Linux Management with Oracle Enterprise Manager 12c An Oracle White Paper June 2013 Oracle Linux Management with Oracle Enterprise Manager 12c Introduction... 1 Oracle Enterprise Manager 12c Overview... 3 Managing Oracle Linux with Oracle Enterprise Manager

More information

Oracle Mobile Security

Oracle Mobile Security Oracle Mobile Security What s New in OMSS 11gR2 Patch Set 3 ORACLE WHITE PAPER MAY 2015 Disclaimer The following is intended to outline our general product direction. It is intended for information purposes

More information

OpenLDAP Oracle Enterprise Gateway Integration Guide

OpenLDAP Oracle Enterprise Gateway Integration Guide An Oracle White Paper June 2011 OpenLDAP Oracle Enterprise Gateway Integration Guide 1 / 29 Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

An Oracle Technical White Paper June 2010. Oracle VM Windows Paravirtual (PV) Drivers 2.0: New Features

An Oracle Technical White Paper June 2010. Oracle VM Windows Paravirtual (PV) Drivers 2.0: New Features An Oracle Technical White Paper June 2010 Oracle VM Windows Paravirtual (PV) Drivers 2.0: New Features Introduction... 2 Windows Paravirtual Drivers 2.0 Release... 2 Live Migration... 3 Hibernation...

More information

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

More information

An Oracle White Paper March 2011. Integrating the SharePoint 2007 Adapter with WebCenter Spaces (11.1.1.3.0 & 11.1.1.4.0)

An Oracle White Paper March 2011. Integrating the SharePoint 2007 Adapter with WebCenter Spaces (11.1.1.3.0 & 11.1.1.4.0) An Oracle White Paper March 2011 Integrating the SharePoint 2007 Adapter with WebCenter Spaces (11.1.1.3.0 & 11.1.1.4.0) Table of Contents Introduction... 2 Overview... 2 Adding WebCenter Adapter for

More information

June, 2015 Oracle s Siebel CRM Statement of Direction Client Platform Support

June, 2015 Oracle s Siebel CRM Statement of Direction Client Platform Support June, 2015 Oracle s Siebel CRM Statement of Direction Client Platform Support Oracle s Siebel CRM Statement of Direction IP2016 Client Platform Support Disclaimer This document in any form, software or

More information

An Oracle White Paper February 2013. Integration with Oracle Fusion Financials Cloud Service

An Oracle White Paper February 2013. Integration with Oracle Fusion Financials Cloud Service An Oracle White Paper February 2013 Integration with Oracle Fusion Financials Cloud Service Executive Overview Cloud computing is a vision that is increasingly turning to reality for many companies. Enterprises,

More information

An Oracle White Paper August 2010. Higher Security, Greater Access with Oracle Desktop Virtualization

An Oracle White Paper August 2010. Higher Security, Greater Access with Oracle Desktop Virtualization An Oracle White Paper August 2010 Higher Security, Greater Access with Oracle Desktop Virtualization Introduction... 1 Desktop Infrastructure Challenges... 2 Oracle s Desktop Virtualization Solutions Beyond

More information

An Oracle White Paper June 2010. How to Install and Configure a Two-Node Cluster

An Oracle White Paper June 2010. How to Install and Configure a Two-Node Cluster An Oracle White Paper June 2010 How to Install and Configure a Two-Node Cluster Table of Contents Introduction... 3 Two-Node Cluster: Overview... 4 Prerequisites, Assumptions, and Defaults... 4 Configuration

More information

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

More information

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

More information

An Oracle Communications White Paper December 2014. Serialized Asset Lifecycle Management and Property Accountability

An Oracle Communications White Paper December 2014. Serialized Asset Lifecycle Management and Property Accountability An Oracle Communications White Paper December 2014 Serialized Asset Lifecycle Management and Property Accountability Disclaimer The following is intended to outline our general product direction. It is

More information

Oracle Hyperion Financial Close Management

Oracle Hyperion Financial Close Management Oracle Hyperion Financial Close Management Oracle Hyperion Financial Close Management is built for centralized, webbased management of period-end close activities across the extended financial close cycle.

More information

Siebel CRM Quote and Order Capture - Product and Catalog Management

Siebel CRM Quote and Order Capture - Product and Catalog Management Siebel CRM Quote and Order Capture - Product and Catalog Management Siebel Product & Catalog Management provides the capabilities to enable businesses to develop, manage and deliver dynamic product catalogs

More information

IIS Reverse Proxy Implementation

IIS Reverse Proxy Implementation IIS Reverse Proxy Implementation for OXI/OEDS Servers V E R S I O N : 1. 1 M A Y 2 9, 2 0 1 5 Table of Contents Intended Audience 3 About this Document 3 Advisories and Known Issues 3 Additional Considerations

More information

ORACLE CRM ON DEMAND RELEASE 30

ORACLE CRM ON DEMAND RELEASE 30 OR A C L E D A T A S H E E T ORACLE CRM ON DEMAND RELEASE 30 Get smarter, more productive and gain the best value with Oracle CRM On Demand Release 30. Oracle CRM On Demand continues to be the most complete

More information

PeopleSoft Enterprise Directory Interface

PeopleSoft Enterprise Directory Interface PeopleSoft Enterprise Directory Interface Today s self-service applications deliver information and functionality to large groups of users over the internet. Organizations use these applications as a cost-effective

More information

Oracle TimesTen In-Memory Database on Oracle Exalogic Elastic Cloud

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

More information

ORACLE VM MANAGEMENT PACK

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

More information

An Oracle White Paper June 2014. RESTful Web Services for the Oracle Database Cloud - Multitenant Edition

An Oracle White Paper June 2014. RESTful Web Services for the Oracle Database Cloud - Multitenant Edition An Oracle White Paper June 2014 RESTful Web Services for the Oracle Database Cloud - Multitenant Edition 1 Table of Contents Introduction to RESTful Web Services... 3 Architecture of Oracle Database Cloud

More information

Integrating Oracle's Exadata Database Machine with a Data Center LAN Using Oracle Ethernet Switch ES2-64 and ES2-72 ORACLE WHITE PAPER MARCH 2015

Integrating Oracle's Exadata Database Machine with a Data Center LAN Using Oracle Ethernet Switch ES2-64 and ES2-72 ORACLE WHITE PAPER MARCH 2015 Integrating Oracle's Exadata Database Machine with a Data Center LAN Using Oracle Ethernet Switch ES2-64 and ES2-72 ORACLE WHITE PAPER MARCH 2015 Introduction 1 Integrating Exadata Database Machine X5

More information

Oracle Database Backup Service. Secure Backup in the Oracle Cloud

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

More information

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

More information

JD Edwards EnterpriseOne Tools. 1 Understanding JD Edwards EnterpriseOne Business Intelligence Integration. 1.1 Oracle Business Intelligence

JD Edwards EnterpriseOne Tools. 1 Understanding JD Edwards EnterpriseOne Business Intelligence Integration. 1.1 Oracle Business Intelligence JD Edwards EnterpriseOne Tools Embedded Business Intelligence for JD Edwards EnterpriseOne Release 8.98 Update 4 E21426-02 March 2011 This document provides instructions for using Form Design Aid to create

More information

How to Use Microsoft Active Directory as an LDAP Source with the Oracle ZFS Storage Appliance

How to Use Microsoft Active Directory as an LDAP Source with the Oracle ZFS Storage Appliance An Oracle Technical White Paper November 2014 How to Use Microsoft Active Directory as an LDAP Source with the Oracle ZFS Storage Appliance Table of Contents Introduction...3 Active Directory LDAP Services...4

More information

Load Testing Hyperion Applications Using Oracle Load Testing 9.1

Load Testing Hyperion Applications Using Oracle Load Testing 9.1 Oracle White Paper Load Testing Hyperion System 9 HFM An Oracle White Paper May 2010 Load Testing Hyperion Applications Using Oracle Load Testing 9.1 Oracle White Paper Load Testing Hyperion System 9 HFM

More information

Oracle Fusion Applications Splitting Topology from Single to Multiple Host Servers

Oracle Fusion Applications Splitting Topology from Single to Multiple Host Servers An Oracle Technical Paper July 2012 Oracle Fusion Applications Splitting Topology from Single to Multiple Host Servers Disclaimer The following is intended to outline our general product direction. It

More information

WEBLOGIC SERVER MANAGEMENT PACK ENTERPRISE EDITION

WEBLOGIC SERVER MANAGEMENT PACK ENTERPRISE EDITION WEBLOGIC SERVER MANAGEMENT PACK ENTERPRISE EDITION COMPLETE WEBLOGIC SERVER MANAGEMENT KEY FEATURES Manage multiple domains centrally Gain in-depth JVM diagnostics Trace transactions across multi-tier

More information

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

More information

Microsoft Active Directory Oracle Enterprise Gateway Integration Guide

Microsoft Active Directory Oracle Enterprise Gateway Integration Guide An Oracle White Paper May 2011 Microsoft Active Directory Oracle Enterprise Gateway Integration Guide 1/33 Disclaimer The following is intended to outline our general product direction. It is intended

More information

Oracle s Primavera Prime Capital Plan Management

Oracle s Primavera Prime Capital Plan Management Oracle s Primavera Prime Capital Plan Management The nature of capital projects necessitate planning for not only infrastructure needs, but for the operational and regulatory requirements of the infrastructure

More information

APPLICATION MANAGEMENT SUITE FOR ORACLE E-BUSINESS SUITE APPLICATIONS

APPLICATION MANAGEMENT SUITE FOR ORACLE E-BUSINESS SUITE APPLICATIONS APPLICATION MANAGEMENT SUITE FOR ORACLE E-BUSINESS SUITE APPLICATIONS Oracle Application Management Suite for Oracle E-Business Suite is a robust application management solution that helps you achieve

More information

THE NEW BUSINESS OF BUSINESS LEADERS. Hiring and Onboarding

THE NEW BUSINESS OF BUSINESS LEADERS. Hiring and Onboarding THE NEW BUSINESS OF BUSINESS LEADERS Hiring and Onboarding 2 INTRODUCTION Unlocking the potential of your talent is key to the success of your organization. Leading businesses actively dedicate resources

More information

Virtual Contact Center

Virtual Contact Center Virtual Contact Center Zendesk CTI Integration Configuration Guide Version 8.0 Revision 1.0 Copyright 2013, 8x8, Inc. All rights reserved. This document is provided for information purposes only and the

More information

Oracle JD Edwards EnterpriseOne Mobile Sales Order Entry

Oracle JD Edwards EnterpriseOne Mobile Sales Order Entry Oracle JD Edwards EnterpriseOne Mobile Sales Order Entry Third-Party Credit Card Plug-In ORACLE WHITE PAPER J ULY 2015 Disclaimer The following is intended to outline our general product direction. It

More information

WebSphere MQ Oracle Enterprise Gateway Integration Guide

WebSphere MQ Oracle Enterprise Gateway Integration Guide An Oracle White Paper June 2011 WebSphere MQ Oracle Enterprise Gateway Integration Guide 1 / 30 Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

FAQ: How to create Effective Messages

FAQ: How to create Effective Messages User Experience Direct (UX Direct) FAQ: How to create Effective Messages Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and

More information

Oracle Communications Extension Group: Enterprise Application Guide ORACLE WHITE PAPER AUGUST 2015

Oracle Communications Extension Group: Enterprise Application Guide ORACLE WHITE PAPER AUGUST 2015 Oracle Communications Extension Group: Enterprise Application Guide ORACLE WHITE PAPER AUGUST 2015 Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

Deliver Oracle BI Publisher documents to Microsoft Office SharePoint Server 2007. An Oracle White Paper July 2008

Deliver Oracle BI Publisher documents to Microsoft Office SharePoint Server 2007. An Oracle White Paper July 2008 Deliver Oracle BI Publisher documents to Microsoft Office SharePoint Server 2007 An Oracle White Paper July 2008 Deliver Oracle BI Publisher documents to Microsoft Office SharePoint Server 2007 To create

More information

An Oracle White Paper January, 2015. Enterprise Manager Cloud Control 12c: Configuring External User Authentication Using Microsoft Active Directory

An Oracle White Paper January, 2015. Enterprise Manager Cloud Control 12c: Configuring External User Authentication Using Microsoft Active Directory An Oracle White Paper January, 2015 Enterprise Manager Cloud Control 12c: Configuring External User Authentication Using Microsoft Active Directory Table of Contents Executive Overview... 3 Introduction...

More information

An Oracle White Paper September 2012. Oracle Database and the Oracle Database Cloud

An Oracle White Paper September 2012. Oracle Database and the Oracle Database Cloud An Oracle White Paper September 2012 Oracle Database and the Oracle Database Cloud 1 Table of Contents Overview... 3 Cloud taxonomy... 4 The Cloud stack... 4 Differences between Cloud computing categories...

More information

Migrating Non-Oracle Databases and their Applications to Oracle Database 12c 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 4

Migrating Non-Oracle Databases and their Applications to Oracle Database 12c 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 4 Migrating Non-Oracle Databases and their Applications to Oracle Database 12c 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 4 1. Introduction Oracle provides products that reduce the time, risk,

More information

How To Customize An Org Bee 11G With A Custom Skin On A Windows 7.5 (Oracle) 11G (Orca) 11Ge (Orora) 11Gh (Orroboro) 11E (Ororro

How To Customize An Org Bee 11G With A Custom Skin On A Windows 7.5 (Oracle) 11G (Orca) 11Ge (Orora) 11Gh (Orroboro) 11E (Ororro Customizing Oracle Business Intelligence Enterprise Edition 11g An Oracle White Paper August, 2010 Customizing Oracle Business Intelligence Enterprise Edition 11g OVERVIEW In order to best deliver an intuitive

More information

Oracle Whitepaper April 2015. Security and the Oracle Database Cloud Service

Oracle Whitepaper April 2015. Security and the Oracle Database Cloud Service Oracle Whitepaper April 2015 Security and the Oracle Database Cloud Service Table of Contents Overview... 3 Security architecture... 4 User areas... 4 Accounts... 4 Identity Domains... 4 Database Cloud

More information

Field Service Management in the Cloud

Field Service Management in the Cloud Field Service Management in the Cloud The Rise of Cloud Applications for Mission-Critical Tasks ORACLE WHITE PAPER DECEMBER 2014 Introduction Since the introduction of cloud applications for customer relationship

More information

An Oracle White Paper May 2012. Oracle Database Cloud Service

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

More information

Oracle SQL Developer Migration

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

More information

An Oracle White Paper July 2012. Oracle VM 3: Building a Demo Environment using Oracle VM VirtualBox

An Oracle White Paper July 2012. Oracle VM 3: Building a Demo Environment using Oracle VM VirtualBox An Oracle White Paper July 2012 Oracle VM 3: Building a Demo Environment using Oracle VM VirtualBox Introduction... 1 Overview... 2 The Concept... 2 The Process Flow... 3 What You Need to Get Started...

More information

Business Driven Process Optimization

Business Driven Process Optimization An Oracle Solution Brief October 2013 Business Driven Process Optimization Introduction... 3 Improving Business Processes... 3 Being Business Driven... 3 Business-driven process design with Oracle BPM

More information

Oracle Hyperion Planning

Oracle Hyperion Planning Oracle Hyperion Planning Oracle Hyperion Planning is an agile planning solution that supports enterprise wide planning, budgeting, and forecasting using desktop, mobile and Microsoft Office interfaces.

More information

Setting up the integration between Oracle Social Engagement & Monitoring Cloud Service and Oracle RightNow Cloud Service

Setting up the integration between Oracle Social Engagement & Monitoring Cloud Service and Oracle RightNow Cloud Service An Oracle Best Practice Guide November 2013 Setting up the integration between Oracle Social Engagement & Monitoring Cloud Service and Oracle RightNow Cloud Service Introduction Creation of the custom

More information

SIX QUESTIONS TO ASK ANY VENDOR BEFORE SIGNING A SaaS E-COMMERCE CONTRACT

SIX QUESTIONS TO ASK ANY VENDOR BEFORE SIGNING A SaaS E-COMMERCE CONTRACT SIX QUESTIONS TO ASK ANY VENDOR BEFORE SIGNING A SaaS E-COMMERCE CONTRACT When evaluating software-as-aservice, particularly e-commerce SaaS solutions, companies often focus on comparing product features

More information

An Oracle Technical Article November 2015. Certification with Oracle Linux 6

An Oracle Technical Article November 2015. Certification with Oracle Linux 6 An Oracle Technical Article November 2015 Certification with Oracle Linux 6 Oracle Technical Article Certification with Oracle Linux 6 Introduction... 1 Comparing Oracle Linux 6 and Red Hat Enterprise

More information

Oracle Planning and Budgeting Cloud Service

Oracle Planning and Budgeting Cloud Service Oracle Planning and Budgeting Cloud Service Oracle Planning and Budgeting Cloud Service enables organizations of all sizes to quickly adopt world-class planning and budgeting applications with no CAPEX

More information

An Oracle White Paper February 2010. Rapid Bottleneck Identification - A Better Way to do Load Testing

An Oracle White Paper February 2010. Rapid Bottleneck Identification - A Better Way to do Load Testing An Oracle White Paper February 2010 Rapid Bottleneck Identification - A Better Way to do Load Testing Introduction You re ready to launch a critical Web application. Ensuring good application performance

More information

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

More information

An Oracle White Paper January 2011. Using Oracle's StorageTek Search Accelerator

An Oracle White Paper January 2011. Using Oracle's StorageTek Search Accelerator An Oracle White Paper January 2011 Using Oracle's StorageTek Search Accelerator Executive Summary...2 Introduction...2 The Problem with Searching Large Data Sets...3 The StorageTek Search Accelerator Solution...3

More information

An Oracle White Paper January 2013. Integrating Oracle Application Express with Oracle Access Manager. Revision 1

An Oracle White Paper January 2013. Integrating Oracle Application Express with Oracle Access Manager. Revision 1 An Oracle White Paper January 2013 Integrating Oracle Application Express with Oracle Access Manager Revision 1 Disclaimer The following is intended to outline our general product direction. It is intended

More information

How To Configure An Orgaa Cloud Control On A Bigip (Cloud Control) On An Orga Cloud Control (Oms) On A Microsoft Cloud Control 2.5 (Cloud) On Microsoft Powerbook (Cloudcontrol) On The

How To Configure An Orgaa Cloud Control On A Bigip (Cloud Control) On An Orga Cloud Control (Oms) On A Microsoft Cloud Control 2.5 (Cloud) On Microsoft Powerbook (Cloudcontrol) On The An Oracle White Paper March, 2012 Enterprise Manager 12c Cloud Control: Configuring OMS High Availability with F5 BIG- IP Local Traffic Manager Executive Overview... 2 About F5 BIG-IP and Oracle Enterprise

More information

Advanced Matching and IHE Profiles

Advanced Matching and IHE Profiles Oracle Healthcare Master Person Index INTEGRATING THE HEALTHCARE ENTERPRISE Oracle Healthcare Master Person Index provides a single point of reference to information about a patient, clinician, payer,

More information

ORACLE OPS CENTER: PROVISIONING AND PATCH AUTOMATION PACK

ORACLE OPS CENTER: PROVISIONING AND PATCH AUTOMATION PACK ORACLE OPS CENTER: PROVISIONING AND PATCH AUTOMATION PACK KEY FEATURES PROVISION FROM BARE- METAL TO PRODUCTION QUICKLY AND EFFICIENTLY Controlled discovery with active control of your hardware Automatically

More information

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

More information

APPLICATION MANAGEMENT SUITE FOR ORACLE E-BUSINESS SUITE APPLICATIONS

APPLICATION MANAGEMENT SUITE FOR ORACLE E-BUSINESS SUITE APPLICATIONS APPLICATION MANAGEMENT SUITE FOR ORACLE E-BUSINESS SUITE APPLICATIONS Oracle Application Management Suite for Oracle E-Business Suite delivers capabilities that helps to achieve high levels of application

More information

An Oracle Best Practice Guide April 2012. Best Practices for Designing Contact Center Experiences with Oracle RightNow CX Cloud Service

An Oracle Best Practice Guide April 2012. Best Practices for Designing Contact Center Experiences with Oracle RightNow CX Cloud Service An Oracle Best Practice Guide April 2012 Best Practices for Designing Contact Center Experiences with Oracle RightNow CX Cloud Service Introduction... 1 Understanding the Problem... 2 Addressing the Problem

More information

ORACLE VIRTUAL DESKTOP INFRASTRUCTURE

ORACLE VIRTUAL DESKTOP INFRASTRUCTURE ORACLE VIRTUAL DESKTOP INFRASTRUCTURE HIGHLY SECURE AND MOBILE ACCESS TO VIRTUALIZED DESKTOP ENVIRONMENTS KEY FEATURES Centralized virtual desktop management and hosting Facilitates access to VDI desktops

More information

Evolution from the Traditional Data Center to Exalogic: An Operational Perspective

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

More information

Accelerating the Transition to Hybrid Cloud with Oracle Managed Cloud Integration Service

Accelerating the Transition to Hybrid Cloud with Oracle Managed Cloud Integration Service Accelerating the Transition to Hybrid Cloud with Oracle Managed Cloud Integration Service How to Connect Applications More Quickly and with Less Risk O R A C L E W H I T E P A P E R O C T O B E R 2 0 1

More information