Deploying Oracle Database 12c with the Oracle ZFS Storage Appliance

Size: px
Start display at page:

Download "Deploying Oracle Database 12c with the Oracle ZFS Storage Appliance"

Transcription

1 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 Systems Engineer John Baton Associate Quality Assurance 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 Enable SNMP to activate OISP and HCC 8 Provisioning Oracle Linux 7 10 Create a Directory Structure 10 Edit /etc/fstab for the New Shares 10 Mount the Shares 10 Enable dnfs 10 Create an Oracle 12c Database 12 Use DBCA to Create a Database 12 Contents of the DBCA Configuration File 12 Contents of the DB Creation Script 14 Execute the DB Creation Script 14 Create a Tablespace 14 Monitor Progress and Performance Using ZFS Storage Analytics 15 Navigate to the Analytics section 15 Add a Statistic 15 Additional Links 18 HOL DEPLOYING ORACLE DATABASE 12C WITH THE ORACLE ZFS STORAGE APPLIANCE

3 Introduction This in-depth hands-on lab demonstrates how to install and manage Oracle Database 12c with the Oracle ZFS Storage Appliance. You ll learn how to apply Oracle Hybrid Columnar Compression, the Oracle Intelligent Storage Protocol feature of Oracle ZFS Storage Appliance, the Direct NFS Client feature of Oracle Database, and more. 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 ORACLE DATABASE 12C 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 web browser, enter oow as Username and oow as Password, then press the LOGIN button. 2 HOL DEPLOYING ORACLE DATABASE 12C 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 file-systems 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 ORACLE DATABASE 12C WITH THE ORACLE ZFS STORAGE APPLIANCE

6 3. Name the project HOL Once the project has been created, edit the HOL9715 project by selecting the pencil icon on the left side of the screen. 5. With the HOL9715 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/hol9715 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 ORACLE DATABASE 12C WITH THE ORACLE ZFS STORAGE APPLIANCE

7 7. Click Apply at the top right. Creating Shares The 12c database will be stored on the Oracle ZFS Storage Appliance Simulator. There will need to be three shares setup to store the data files, logs, and flash recovery area. 5 HOL DEPLOYING ORACLE DATABASE 12C 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 datafiles and click Apply. 6 HOL DEPLOYING ORACLE DATABASE 12C WITH THE ORACLE ZFS STORAGE APPLIANCE

9 4. Create a share called fra and click Apply. 5. Create a share called logs and click Apply. 7 HOL DEPLOYING ORACLE DATABASE 12C WITH THE ORACLE ZFS STORAGE APPLIANCE

10 You should now have three shares created: datafiles, fra, and logs. Enable SNMP to activate OISP and HCC 1. Navigate to Configuration Services and click on SNMP near the bottom. 2. Click on SNMP underneath System Settings (near the bottom): 3. The following settings should be set: a. Version: v1/2c b. Community name: public c. Authorized network/mask: / 0 d. Appliance contact: HOL e. Trap destinations: HOL DEPLOYING ORACLE DATABASE 12C WITH THE ORACLE ZFS STORAGE APPLIANCE

11 4. Click the power-on button to enable the SNMP service. 5. Verify the SNMP LED turns on (green). 9 HOL DEPLOYING ORACLE DATABASE 12C WITH THE ORACLE ZFS STORAGE APPLIANCE

12 Provisioning Oracle Linux 7 The binaries for the 12c database have already been preinstalled on the Oracle Linux VM. They are held in the /u01/app/oracle directory. The password for this VM is oow. 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 VM. Please use the following locations: $ sudo mkdir -p /zfssa/hol9715/datafiles $ sudo mkdir -p /zfssa/hol9715/fra $ sudo mkdir -p /zfssa/hol9715/logs Edit /etc/fstab for the New Shares The entries have already been populated inside of /etc/fstab: $ cat /etc/fstab # Oracle DB 12c HOL :/export/HOL9715/datafiles /zfssa/hol9715/datafiles nfs rw,bg,hard,nointr,rsize= ,wsize= ,tcp,vers=4,timeo=600,noac :/export/HOL9715/fra /zfssa/hol9715/fra nfs rw,bg,hard,nointr,rsize= ,wsize= ,tcp,vers=4,timeo=600,noac :/export/HOL9715/logs /zfssa/hol9715/logs nfs rw,bg,hard,nointr,rsize= ,wsize= ,tcp,vers=4,timeo=600,noac 0 0 Mount the Shares $ sudo mount -a Enable dnfs The entries have already been populated inside of $ORACLE_HOME/dbs/oranfstab: $ su oracle $ cat $ORACLE_HOME/dbs/oranfstab server: path: nfs_version: nfsv4 export: /zfssa/hol9715/datafiles mount: /zfssa/hol9715/datafiles export: /zfssa/hol9715/fra mount: /zfssa/hol9715/fra export: /zfssa/hol9715/logs mount: /zfssa/hol9715/logs Direct NFS, also known as dnfs, is the preferred method for database communication with the Oracle ZFS Storage Appliance. This feature optimizes I/O traffic by replacing the kernel NFS with an NFS client that is tailored specifically for Oracle software. It is only available in Oracle Database 11g and 12c. 10 HOL DEPLOYING ORACLE DATABASE 12C WITH THE ORACLE ZFS STORAGE APPLIANCE

13 $ cd $ORACLE_HOME/rdbms/lib $ make f ins_rdbms.mk dnfs_on rm -f /u01/app/oracle/product/12.1.0/dbhome_1/lib/libodm12.so; cp /u01/app/oracle/product/12.1.0/dbhome_1/lib/libnfsodm12.so /u01/app/oracle/product/12.1.0/dbhome_1/lib/libodm12.so 11 HOL DEPLOYING ORACLE DATABASE 12C WITH THE ORACLE ZFS STORAGE APPLIANCE

14 Create an Oracle 12c Database Use DBCA to Create a Database DBCA, the Database Configuration Assistant, is a tool to create, configure, or destroy an Oracle database. It will be utilized in this lab in order to automate a database install. Contents of the DBCA Configuration File To simply the creation of the database with DBCA, a configuration file has already been pre-generated for this lab. This is an XML file that aligns the NFS shares and settings already configured with the ZFS storage appliance. $ cd /home/oow/oracle $ cat setup/hol9715.dbc <?xml version = '1.0'?> <DatabaseTemplate name="hol9715" description=" " version=" "> <CommonAttributes> <option name="oms" value="true"/> <option name="jserver" value="true"/> <option name="spatial" value="true"/> <option name="imedia" value="true"/> <option name="xdb_protocols" value="true"> <tablespace id="sysaux"/> </option> <option name="oracle_text" value="true"> <tablespace id="sysaux"/> </option> <option name="sample_schema" value="false"/> <option name="cwmlite" value="true"> <tablespace id="sysaux"/> </option> <option name="apex" value="true"/> <option name="dv" value="true"/> </CommonAttributes> <Variables/> <CustomScripts Execute="false"/> <InitParamAttributes> <InitParams> <initparam name="db_name" value=""/> <initparam name="dispatchers" value="(protocol=tcp) (SERVICE={SID}XDB)"/> <initparam name="audit_file_dest" value="{oracle_base}/admin/{db_unique_name}/adump"/> <initparam name="compatible" value=" "/> <initparam name="remote_login_passwordfile" value="exclusive"/> <initparam name="processes" value="300"/> <initparam name="undo_tablespace" value="undotbs1"/> <initparam name="control_files" value="("/zfssa/hol9715/logs/{db_unique_name}/control01.ctl", "/zfssa/hol9715/fra/{db_unique_name}/control02.ctl")"/> <initparam name="diagnostic_dest" value="{oracle_base}"/> <initparam name="db_recovery_file_dest" value="/zfssa/hol9715/fra"/> <initparam name="audit_trail" value="db"/> <initparam name="memory_target" value="250" unit="mb"/> <initparam name="db_block_size" value="8" unit="kb"/> <initparam name="open_cursors" value="300"/> <initparam name="db_recovery_file_dest_size" value="" unit="mb"/> </InitParams> <MiscParams> <databasetype>multipurpose</databasetype> <maxuserconn>20</maxuserconn> <percentagememtosga>40</percentagememtosga> <customsga>false</customsga> 12 HOL DEPLOYING ORACLE DATABASE 12C WITH THE ORACLE ZFS STORAGE APPLIANCE

15 <archivelogmode>false</archivelogmode> <initparamfilename>{oracle_base}/admin/{db_unique_name}/pfile/init.ora</initparam FileName> </MiscParams> <SPfile usespfile="true">{oracle_home}/dbs/spfile{sid}.ora</spfile> </InitParamAttributes> <StorageAttributes> <DataFiles> <Location>{ORACLE_HOME}/assistants/dbca/templates/Seed_Database.dfb</Location> <SourceDBName cdb="true">seeddata</sourcedbname> <Name id="3" Tablespace="SYSAUX" Contents="PERMANENT" Size="560" autoextend="true" blocksize="8192" con_id="1">/zfssa/hol9715/datafiles/{db_unique_name}/sysaux01.dbf</name> <Name id="1" Tablespace="SYSTEM" Contents="PERMANENT" Size="780" autoextend="true" blocksize="8192" con_id="1">/zfssa/hol9715/datafiles/{db_unique_name}/system01.dbf</name> <Name id="4" Tablespace="UNDOTBS1" Contents="UNDO" Size="25" autoextend="true" blocksize="8192" con_id="1">/zfssa/hol9715/datafiles/{db_unique_name}/undotbs01.dbf</name> <Name id="6" Tablespace="USERS" Contents="PERMANENT" Size="5" autoextend="true" blocksize="8192" con_id="1">/zfssa/hol9715/datafiles/{db_unique_name}/users01.dbf</name> </DataFiles> <TempFiles> <Name id="1" Tablespace="TEMP" Contents="TEMPORARY" Size="60" con_id="1">/zfssa/hol9715/datafiles/{db_unique_name}/temp01.dbf</name> </TempFiles> <ControlfileAttributes id="controlfile"> <maxdatafiles>100</maxdatafiles> <maxlogfiles>16</maxlogfiles> <maxlogmembers>3</maxlogmembers> <maxloghistory>1</maxloghistory> <maxinstances>8</maxinstances> <image name="control01.ctl" filepath="/zfssa/hol9715/logs/{db_unique_name}/"/> <image name="control02.ctl" filepath="/zfssa/hol9715/fra/{db_unique_name}/"/> </ControlfileAttributes> <RedoLogGroupAttributes id="1"> <reuse>false</reuse> <filesize unit="kb">51200</filesize> <Thread>1</Thread> <member ordinal="0" membername="redo01.log" filepath="/zfssa/hol9715/logs/{db_unique_name}/"/> </RedoLogGroupAttributes> <RedoLogGroupAttributes id="2"> <reuse>false</reuse> <filesize unit="kb">51200</filesize> <Thread>1</Thread> <member ordinal="0" membername="redo02.log" filepath="/zfssa/hol9715/logs/{db_unique_name}/"/> </RedoLogGroupAttributes> <RedoLogGroupAttributes id="3"> <reuse>false</reuse> <filesize unit="kb">51200</filesize> <Thread>1</Thread> <member ordinal="0" membername="redo03.log" filepath="/zfssa/hol9715/logs/{db_unique_name}/"/> </RedoLogGroupAttributes> </StorageAttributes> 13 HOL DEPLOYING ORACLE DATABASE 12C WITH THE ORACLE ZFS STORAGE APPLIANCE

16 Contents of the DB Creation Script A DB creation script has already been pre-generated to create the database. It uses the template file written in the previous section. It also auto-populates the database name and password. $ cat createdb.sh #!/bin/sh dbca -silent -createdatabase -templatename setup/hol9715.dbc -gdbname HOL sid HOL9715 -syspassword HOL9715 -systempassword HOL9715 Execute the DB Creation Script 1. Run the script createdb.sh inside the home directory. $./createdb.sh Copying database files 1% complete 3% complete 37% complete Creating and starting Oracle instance 40% complete 45% complete 50% complete 55% complete 56% complete 60% complete 62% complete Completing Database Creation 66% complete 70% complete 73% complete 85% complete 96% complete 100% complete Look at the log file "/u01/app/oracle/cfgtoollogs/dbca/hol9715/hol9715.log" for further details. Create a Tablespace 1. Change the 'ORACLE_SID' to 'HOL9715', then use SQL*PLUS to interface with the Oracle 12c Database. $ export ORACLE_SID=HOL9715 $ sqlplus / as sysdba SQL*Plus: Release Production on Tue Aug 13 10:47: Copyright (c) 1982, 2013, Oracle. All rights reserved. Connected to: Oracle Database 12c Enterprise Edition Release bit Production With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options 2. Create a tablespace for 'HOL9715' to be contained on the Oracle ZFS Storage Appliance. SQL> create bigfile tablespace HOL9715 datafile '/zfssa/hol9715/datafiles/hol9715.dbf' size 100M; Tablespace created. 14 HOL DEPLOYING ORACLE DATABASE 12C WITH THE ORACLE ZFS STORAGE APPLIANCE

17 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 is installing, 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 NFSv4 category. 15 HOL DEPLOYING ORACLE DATABASE 12C WITH THE ORACLE ZFS STORAGE APPLIANCE

18 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. 16 HOL DEPLOYING ORACLE DATABASE 12C WITH THE ORACLE ZFS STORAGE APPLIANCE

19 17 HOL DEPLOYING ORACLE DATABASE 12C WITH THE ORACLE ZFS STORAGE APPLIANCE

20 Additional Links 1. VirtualBox 2. Oracle ZFS Storage Simulator html 3. Oracle Linux HOL9715 Lab Information 18 HOL DEPLOYING ORACLE DATABASE 12C WITH THE ORACLE ZFS STORAGE APPLIANCE

21 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 MySQL with the Oracle ZFS Storage Appliance

Deploying MySQL with the Oracle ZFS Storage Appliance 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 Table

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Driving Down the High Cost of Storage. Pillar Axiom 600

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

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

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

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

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

PeopleSoft Mobile Inventory Management for Healthcare

PeopleSoft Mobile Inventory Management for Healthcare PeopleSoft Mobile Inventory Management for Healthcare Oracle s PeopleSoft Mobile Inventory Management applications enable automated mobile user operations. Users perform tasks using handheld Windows-enabled

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

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

ORACLE FUSION PERFORMANCE MANAGEMENT

ORACLE FUSION PERFORMANCE MANAGEMENT ORACLE FUSION PERFORMANCE MANAGEMENT STRATEGIC PERFORMANCE MANAGEMENT KEY FEATURES Intuitive task list and navigation easily directs users to the next step to take Informational region within performance

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

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

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

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

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

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

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 August 2010. Oracle Database Auditing: Performance Guidelines

An Oracle White Paper August 2010. Oracle Database Auditing: Performance Guidelines An Oracle White Paper August 2010 Oracle Database Auditing: Performance Guidelines Introduction Database auditing has become increasingly important as threats to applications become more sophisticated.

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

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

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

Oracle Directory Services Integration with Database Enterprise User Security O R A C L E W H I T E P A P E R F E B R U A R Y 2 0 1 5

Oracle Directory Services Integration with Database Enterprise User Security O R A C L E W H I T E P A P E R F E B R U A R Y 2 0 1 5 Oracle Directory Services Integration with Database Enterprise User Security O R A C L E W H I T E P A P E R F E B R U A R Y 2 0 1 5 Disclaimer The following is intended to outline our general product

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

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

Oracle s BigMachines Solutions. Cloud-Based Configuration, Pricing, and Quoting Solutions for Enterprises and Fast-Growing Midsize Companies

Oracle s BigMachines Solutions. Cloud-Based Configuration, Pricing, and Quoting Solutions for Enterprises and Fast-Growing Midsize Companies Oracle s BigMachines Solutions Cloud-Based Configuration, Pricing, and Quoting Solutions for Enterprises and Fast-Growing Midsize Companies Oracle s BigMachines cloud-based solutions enable both enterprise

More information

An Oracle Technical Article March 2015. Certification with Oracle Linux 7

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

More information

An Oracle White Paper May 2011 BETTER INSIGHTS AND ALIGNMENT WITH BUSINESS INTELLIGENCE AND SCORECARDS

An Oracle White Paper May 2011 BETTER INSIGHTS AND ALIGNMENT WITH BUSINESS INTELLIGENCE AND SCORECARDS An Oracle White Paper May 2011 BETTER INSIGHTS AND ALIGNMENT WITH BUSINESS INTELLIGENCE AND SCORECARDS 1 Introduction Business Intelligence systems have been helping organizations improve performance by

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

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

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

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

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 Sales Cloud Configuration, Customization and Integrations

Oracle Sales Cloud Configuration, Customization and Integrations WINTER 15 Oracle Sales Cloud Configuration, Customization and Integrations Oracle's standards-based, open and flexible platform makes it easy to rapidly build and deploy rich applications or integrate

More information

APPLICATION MANAGEMENT SUITE FOR SIEBEL APPLICATIONS

APPLICATION MANAGEMENT SUITE FOR SIEBEL APPLICATIONS APPLICATION MANAGEMENT SUITE FOR SIEBEL APPLICATIONS USER EXPERIENCE MANAGEMENT SERVICE LEVEL OBJECTIVE REAL USER MONITORING SYNTHETIC USER MONITORING SERVICE TEST KEY PERFORMANCE INDICATOR PERFORMANCE

More information

Contract Lifecycle Management for Public Sector A Procure to Pay Management System

Contract Lifecycle Management for Public Sector A Procure to Pay Management System Contract Lifecycle Management for Public Sector A Procure to Pay Management System The Integration of Finance, Supply and Acquisition ORACLE WHITE PAPER OCTOBER 2014 Disclaimer The following is intended

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

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

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

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

PeopleSoft Enterprise Learning Management

PeopleSoft Enterprise Learning Management PeopleSoft Enterprise Learning Management Organizations continue to use effective talent management practices to address a variety of business challenges and gain a competitive advantage. These challenges

More information

INCREASING EFFICIENCY WITH EASY AND COMPREHENSIVE STORAGE MANAGEMENT

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

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

Siebel CRM Reports. Easy to develop and deploy. Administration

Siebel CRM Reports. Easy to develop and deploy. Administration Siebel CRM Reports The Siebel CRM integration with Oracle Business Intelligence Publisher (BI Publisher) provides an enterprise reporting solution to author, manage, and deliver all types of highly formatted

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

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 S PRIMAVERA CONTRACT MANAGEMENT, BUSINESS INTELLIGENCE PUBLISHER EDITION

ORACLE S PRIMAVERA CONTRACT MANAGEMENT, BUSINESS INTELLIGENCE PUBLISHER EDITION ORACLE S PRIMAVERA CONTRACT MANAGEMENT, BUSINESS INTELLIGENCE PUBLISHER EDITION KEY FEATURES NEW: Oracle BI Publisher NEW: UPK Support NEW: Technology Enhancements NEW: Web Services Powerful dashboards

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 WebCenter Sites. Backup and Recovery Guide 11g Release 1 (11.1.1)

Oracle WebCenter Sites. Backup and Recovery Guide 11g Release 1 (11.1.1) Oracle WebCenter Sites Backup and Recovery Guide 11g Release 1 (11.1.1) April 2012 Oracle WebCenter Sites Backup and Recovery Guide, 11g Release 1 (11.1.1) Copyright 2012 Oracle and/or its affiliates.

More information

Oracle Primavera Gateway

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

More information

Oracle Sales For Handhelds

Oracle Sales For Handhelds Oracle Sales For Handhelds Oracle Sales for Handhelds is the application that keeps sales reps easily informed and effective on the road. The application is a key component of the Oracle Customer Relationship

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

PeopleSoft Strategic Sourcing

PeopleSoft Strategic Sourcing PeopleSoft Strategic Sourcing Oracle s PeopleSoft Strategic Sourcing enables your organization to streamline its RFx processes, conduct real-time auctions, and strategically award contracts or purchase

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

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

ORACLE FUSION PROJECT MANAGEMENT CLOUD SERVICE

ORACLE FUSION PROJECT MANAGEMENT CLOUD SERVICE ORACLE FUSION PROJECT MANAGEMENT CLOUD SERVICE Oracle Fusion Project Management Cloud extends planning and scheduling to the occasional project manager; to those who manage projects infrequently and not

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

April 2014. Oracle Higher Education Investment Executive Brief

April 2014. Oracle Higher Education Investment Executive Brief April 2014 Oracle Higher Education Investment Executive Brief Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and may not be

More information

ORACLE MANAGED FILE TRANSFER

ORACLE MANAGED FILE TRANSFER ORACLE MANAGED FILE TRANSFER ENTERPRISE FILE EXCHANGE FAST AND FLEXIBLE LARGE FILE HANDLING KEY FEATURES End to End Auditability, Control and Reporting Built-in Security, Identity management, LDAP and

More information

Oracle Sales Cloud for Consumer Goods

Oracle Sales Cloud for Consumer Goods S U M M E R 1 5 Oracle Sales Cloud for Consumer Goods Oracle Sales Cloud for Consumer Goods is a comprehensive industry solution that includes trade promotion management and retail execution. The retail

More information

An Oracle White Paper April, 2010. Effective Account Origination with Siebel Financial Services Customer Order Management for Banking

An Oracle White Paper April, 2010. Effective Account Origination with Siebel Financial Services Customer Order Management for Banking An Oracle White Paper April, 2010 Effective Account Origination with Siebel Financial Services Customer Order Management for Banking Executive Overview In the absence of an enterprise account origination

More information

The new Manage Requisition Approval task provides a simple and user-friendly interface for approval rules management. This task allows you to:

The new Manage Requisition Approval task provides a simple and user-friendly interface for approval rules management. This task allows you to: SELF SERVICE PROCUREMENT Oracle Fusion Self Service Procurement streamlines the purchase requisitioning process using a consumer centric approach and helps control the employee spending by enforcing the

More information

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

More information