Safe Harbor Statement

Size: px
Start display at page:

Download "Safe Harbor Statement"

Transcription

1

2 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, and timing of any features or functionality described for Oracle s products remains at the sole discretion of Oracle.

3 Best Practices In E-Business Suite Performance Tuning Kandasamy Nainamalai Senior Principal Software Engineer - Applications Technology Group

4 Program Agenda 1 Applications Architecture 2 Defining & Isolating issue 3 How to approach a performance issue 4 SQL Trace and TKPROF output 5 AWR/Statspack Report 6 Best Practices Maximizing the performance 4

5 <Insert Picture Here> Oracle Applications Architecture

6 Oracle Applications Architecture 3-tier architecture Database Tier Application/Middle Tier Desktop Tier

7 3-Tier Architecture

8 <Insert Picture Here> Defining and Isolating the Issue

9 Defining and Isolating the Issue What is slow? 1. The entire system is slow. 2. A subsystem is slow: - Forms-Based Applications - Web-Based Applications - Concurrent Manager 1. A particular process is slow.

10 Defining and Isolating the Issue When is it slow? Month end/year end Peak hours Concurrency, due to Load (or) H/W is not sized. All the time Was it working fine earlier? All of a sudden List out recent changes Patch, Gather Schema, New RAC-node/modules/users, Data load, OS, Network/DNS Deteriorated over a period Who all are affected? All users Specific to some module

11 Defining and Isolating the Issue By this time, we should be in a position to isolate which component is the source of the performance issue. Once we identify the component, we need to investigate what could be the problem. How to go about doing that?

12 <Insert Picture Here> How to Approach a Performance Issue

13 <Insert Picture Here> Approaching Performance Issue Gathering Required Information

14 Approaching Performance Issue Desktop Although it s a thin client; browser uses Java for the presentation Layer. It requires some resource at the Desktop. Check if there s enough resource CPU/RAM Ensure that no heavy applications are running when accessing applications.

15 Approaching Performance Issue Concurrent Manager Concurrent jobs are CPU intensive. Hence ensure enough resource CPU/RAM is available on the DB tier. Check RAC & PCP configuration. Check concurrent manager definition for Sleep time & Cache are set correctly Check resource-intensive batch requests are scheduled during peak hours. ( if yes, Separate manager for long running process with less number of managers) Check there are short running requests waiting for a longer time to process (Resolution: create Specialized Managers) Check Fnd_concurrent_requests & Processes are purged & defragmented regularly. Avoid enabling an excessive number of standard or specialized managers. Note Best Practices for Performance for Concurrent Managers

16 Approaching Performance Issue Forms Server Memory Intensive. Ensure sufficient RAM,Swap & CPU. Check Sar & top (look for spinning f60webmx) Check FORMS60_CATCHTERM FORMS_RECORD_GROUP_MAX Check if Debug/FRD enabled. Check load balancing enabled and works effectively. Latest Forms Patch set level with IO patches. Servlet Vs Socket Mode

17 Approaching Performance Issue Applications How many concurrent users are there? What are all the modules used? Any resource-intensive module is used. When was gather schema statistics request run last? Diagnostics profiles are enabled ; this will consume lots of resource. Sign on Audit is disabled if not needed. Audit on other tables have been enabled (additional overhead) Purging is done periodically.

18 Approaching Performance Issue Database DB processes are basically CPU Intensive. Check adequate resource (CPU/RAM) is available. Monitor Sar/vmstat output (first thing to do) If Wio is high then need to check I/O setup & SQL queries If CPU is high then check for CPU-intensive queries. Monitor top OS process at OS level Top (HP) / prstat (Sun) / ps aux (AIX) init.ora setup (Refer note ) Version of the Database & performance patch applied. AWR / Statspack

19 Approaching Performance Issue Web Tier (OC4J, Apache & Jserv) Check if JVM is hanging (due to Out of Memory issue). Check Heap size and how many JVM threads are defined. Disable statement/debug level logs when not needed. AOL/J Database Connection Pool Status (Doc ID ) Review DBC file configuration Review Apache/Jserv configuration Network It plays vital role if Applications accessed through VPN/WAN Check for sufficient Bandwidth (ping host l 1024 t) Latency should be as less as possible. Network Test ((Doc ID ) Socket Vs Servlet

20 <Insert Picture Here> SQL Trace and TKPROF Output When specific process takes time

21 Different Trace Levels Four possible levels: Level 1 : Regular Trace / SQL Trace Level 4 : Trace with Binds Level 8 : Trace with Waits Level 12 : Trace with Binds and Waits Level 8 is the preferred for analyzing performance issues.

22 Create Trace File Form Trace menu availability: or higher Trace file name contains application User Name Trace in Pre Identify the Session/Process Id then enable trace as below. ORADEBUG SETOSPID &&pid ORADEBUG EVENT TRACE NAME CONTEXT FOREVER, LEVEL 8 rem ORADEBUG EVENT TRACE NAME CONTEXT off

23

24 Concurrent Report Tracing Report Level Vs Program level 1. Set Enable Trace flag in the Concurrent Program Definition Form. (Program level) 2. Enable trace for a specific request (SRS form > Debug Options) (Request level) The profile Concurrent: Allow Debugging should be set to Yes. Recommended way to enable trace.

25 Enabling Trace at the Program Level

26 Enabling Trace at the Request Level

27 Create a Trace File Self Service To generate DB trace if web pages are slow. There are two options. 1. Set Profile Option FND: Diagnostics to Yes 2. Alternative: Profile Option called Initialization SQL Statement Custom What to choose from the above two options? Choose option 2, if the web page hangs and prevents you from enabling trace.

28

29 Create a Trace File Anywhere Profile Option : Initialization SQL Statement - Custom Can always be used, e.g.: Concurrent Programs Background processes like Workflow... Set on User level only SQL code will execute for each new DB session which it initialized for an application user SQL Statement for a level 12 trace: begin fnd_ctl.fnd_sess_ctl ('','','TRUE','TRUE','LOG','ALTER SESSION SET tracefile_identifier=''mytrace'' EVENTS=''10046 TRACE NAME CONTEXT FOREVER, LEVEL 12'''); end;

30

31 What Is TKPROF? Formatted report of SQL Trace file Includes all SQL statements with statistical info Allows to identify the performance problem by using different sort methods Invoke tkprof from Database Tier (10g/11g)

32 Getting TKPROF Output tkprof tracefile.trc output.txt sort=fchela,exeela,prsela Invoke tkprof from Database Tier Upload raw trace and tkprof output i.e. output.txt and tracefile.trc

33 total time # rows

34 Identify Culprit SQL Statement Identify Culprit SQL statement is within TKPROF files Most relevant is TKPROF Sorted by elapsed time In general the first SQL statement is the culprit Tip: Always look for large numbers

35 Gather Enhanced Explain Plan Isolate the culprit SQL statement in a text file Gather Enhanced Explain Plan using SQLTXPLAIN.SQL: Note Isolate the expensive DML. Collect statistics for the tables involved in the query. exec fnd_stats.gather_table_stats ('APPLSYS','FND_CONCURRENT_REQUESTS',PERCENT=>99); Any full table scan is used. See any index can be used Create new custom indexes on custom tables. Its suggested not to create indexes on seeded tables unless recommended by us. Re-write the custom query to speed up the query Ensure Temp, interface tables are purged and defragmented. Unselective index is being used. Rebuild the indexes associated only if necessary. Patch (for Higher version of code ) which resolves it. Log an SR with Oracle Support

36 <Insert Picture Here> AWR/Statspack Report

37 DEMO Demo AWR Report If you see any DML is consuming more elapsed time, get the explain plan using sql_id as below. You can run the following commands to obtain the run-time statistics, as well as past plans recorded in AWR: SQL> SELECT * FROM table(dbms_xplan.display_cursor('&sql_id',null,'allstats')) ; SQL> SELECT * FROM table(dbms_xplan.display_awr('&sql_id',null,null,'all'));

38 AWR/ Statspack Report Top 5 Events section This section shows the Top 5 timed events that must be considered to focus the tuning efforts. Top 5 Wait Events ~~~~~~~~~~~~~~~~~ Event Wait Waits Time (cs) Wt Time db file sequential read % Total ,797,963 11,207, db file scattered read 792,958 9,651, buffer busy waits 158,725 1,554, , , ,489, , log file sync SQL*Net break/reset to client

39 AWR / Statspack Report Handling db file scattered read This wait happens when a session is waiting for a multi block IO to complete. This typically occurs during full table scans or index fast full scans. Check if there are any full table scans. In this case query tuning should be used to optimize the SQL. See if partitioning can be used to reduce the amount of data you need to scan. Review SGA Database Buffer Cache

40 Best Practices for Maximizing the Performance Techstack upgrade (for Performance & High-Availability) Upgrade Database to (Note & Doc ID ) OracleAS 10g Release 3 Patch Set 5 ( ) (Note ) Forms bundle patch on (Doc ID ) Upgrade EBS to Latest version (or) (Note 269.1, ) Apply Recommended Performance Patches (Doc ID )

41 Best Practices for Maximizing the Performance Regular Health check to be performed Database Sufficient resource CPU/RAM available (20-30% free RAM/CPU is healthy) Sar & Top process has to be examined (Store it ; can be used later to compare) Ensure init.ora parameters are as per standards. AWR/Statspack report examined often. Forms Server Sufficient resource RAM & SWAP available Spinning of forms process set FORMS_RECORD_GROUP_MAX=10000 (Doc ID ) Cancel Query FND: Enable Cancel Query to No Tweak FORMS60_CATCHTERM & FORMS_CATCHTERM Servlet Vs Socket Mode Note Using Forms Socket Mode with Oracle E-Business Suite Release 12

42 Best Practices for Maximizing the Performance Concurrent Manager Tune using Best Practice Concurrent Manager (Note ) Sufficient resource CPU/RAM available Sleep time (30 secs) & Cache size (equal to number of process) Specialized Manger are used if needed. Purge / de-fragment Concurrent tables Applications Gather schema statistics collected at regular interval with % 11g Database, Apply Apps Patch (12.1.x) (12.0.x) ( ) to speed to Gather schema Stats. Leave % as null (Doc ID ) Diagnostics profiles/frd/traces are disabled if not needed. Hardware Sizing. Sign-on Audit & Audit tables are disabled if not needed. Purge & De-fragment interface/transaction tables periodically. (Note ) Purge portal is available in OAM that can be used to purge Apps.

43 Best Practices for Maximizing the Performance Network Audit Network usage. Tool to help identify the source of the problem Oracle E-Business Suite Network Utilities: Best Practices [ID ] Note Symmetrical Network Acceleration with Oracle E-Business Suite Release 12 Note Performance Degradation in Forms in R12 When not Using Swan Color Scheme Web Tier (OC4J, Apache & Jserv) Ensure heapsize is set properly (Doc ID ) Tune s_oacore_jvm_start_option (R12) (Doc ID ) $ grep s_oacore_jvm_start_option $CONTEXT_FILE (OS command to check it out) Tune oacore_nprocs( R12) Tune ApJServGroup OACoreGroup in jserv.properties (R11i )

44 Best Practices for maximizing performance (12.2 ) Oacore JVM Configuration Configure 2 GB JVM Heap Space for oacore. This can roughly support 150 to 200 users depending on usage. Default is 512 MB (roughly supports 50 users) Add more oacore instance to support more users. use multiple managed instances instead increasing heap size. Note: You should always size your systems based on tests using above representative data and workloads for your own environment. 44

45 Best Practices for maximizing performance Oacore JVM Configuration 45

46 Summary Performance Tuning Monitor Resource (CPU/ I/O /RAM) Utilization. Ensure Init.ora standards are met (Note ) AWR Report for Database wide performance issue Best Practice Concurrent Manager (Note ) Purge & Defragment interface/transaction tables. (Note ) Gather Schema Statistics at regular Interval. Apply FND_STATS patch (12.1.x) (12.0.x) ( ) to speed to Gather schema Stats (relevant for 11g Database). Upgrade Applications & Techstack.

47 References A Holistic Approach to Performance Tuning Oracle Applications Systems (Doc ID ) Best Practices for Performance for Concurrent Managers in EBS (Doc ID ) Reducing Your EBS Data Footprint using Archiving, Purging, and ILM (Doc ID ) bde_chk_cbo.sql - EBS initialization parameters - Healthcheck (Doc ID ) Collecting Diagnostic Data for Performance Issues in Oracle E-Business Suite (Doc ID ) Oracle E-Business Suite Recommended Performance Patches (Doc ID )

48 References JVM: Guidelines to setup the Java Virtual Machine in Apps Ebusiness Suite 11i and R12 (Doc ID ). Forms Process (FRMWEB) Consumes 100% of CPU in Oracle Applications R12 (Doc ID ) Best Practices for Gathering Statistics with Oracle E-Business Suite (Doc ID )

49 References Upgrading E-Business Suite. Which Oracle E-Business Suite Release Should You Target: 12.1 or 12.2? (Doc ID ) Upgrade Advisor: E-Business Suite (EBS) Upgrade from to (Doc ID 269.1) Interoperability Notes EBS R12 with Database 11gR2 (Doc ID ) Interoperability Notes Oracle EBS 11i with Oracle Database 11gR2 (11.2.0) (Doc ID ) Upgrading to the Latest OracleAS 10g x Patch Set in Oracle E-Business Suite Release 12 (Doc ID ) Upgrading OracleAS 10g Forms and Reports in Oracle E-Business Suite Release 12 (Doc ID )

50 References Upgrading E-Business Suite. These documents provide a starting point for customers moving to Oracle E-Business Suite Release Which Oracle E-Business Suite Release Should You Target: 12.1 or 12.2? (Doc ID ) Scenarios for Getting Started With Oracle E-Business Suite Release 12.2 (Doc ID ) Oracle E-Business Suite Technical Planning Guide, First Edition, Release 12.2 (Doc ID ) Useful 12.2 Documents For Customers And ATG Support Engineers (Doc ID ) Database Preparation Guidelines for an E-Business Suite Release 12.2 Upgrade (Doc ID ) 12.2: Consolidated List of Patches and Technology Bug Fixes (Doc ID ) R12.1 and 12.2 Oracle E-Business Suite Preinstall Patches Report [Video] (Doc ID ) Oracle E-Business Suite Recommended Performance Patches (Doc ID ) Best Practices for Minimizing Oracle E-Business Suite Release 12 Upgrade Downtime (Doc ID ) Express Diagnosis of Oracle E-Business Suite Release 12 Upgrade Performance Issues (Doc ID ) Oracle E-Business Suite Performance Guide (Doc ID ) Oracle E-Business Suite Release 12.2: Upgrade Sizing and Best Practices (Doc ID )

51 You can visit us at

52 Q&A 52

53 53

54

Oracle Database 11 g Performance Tuning. Recipes. Sam R. Alapati Darl Kuhn Bill Padfield. Apress*

Oracle Database 11 g Performance Tuning. Recipes. Sam R. Alapati Darl Kuhn Bill Padfield. Apress* Oracle Database 11 g Performance Tuning Recipes Sam R. Alapati Darl Kuhn Bill Padfield Apress* Contents About the Authors About the Technical Reviewer Acknowledgments xvi xvii xviii Chapter 1: Optimizing

More information

Keep It Simple - Common, Overlooked Performance Tuning Tips. Paul Jackson Hotsos

Keep It Simple - Common, Overlooked Performance Tuning Tips. Paul Jackson Hotsos Keep It Simple - Common, Overlooked Performance Tuning Tips Paul Jackson Hotsos Who Am I? Senior Consultant at Hotsos Oracle Ace Co-Author of Oracle Applications DBA Field Guide Co-Author of Oracle R12

More information

Exploring Oracle E-Business Suite Load Balancing Options. Venkat Perumal IT Convergence

Exploring Oracle E-Business Suite Load Balancing Options. Venkat Perumal IT Convergence Exploring Oracle E-Business Suite Load Balancing Options Venkat Perumal IT Convergence Objectives Overview of 11i load balancing techniques Load balancing architecture Scenarios to implement Load Balancing

More information

How To Test For A Test On A Test Server

How To Test For A Test On A Test Server Real Application Testing Dave Foster Master Principal Sales Consultant The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

Oracle DBA Course Contents

Oracle DBA Course Contents Oracle DBA Course Contents Overview of Oracle DBA tasks: Oracle as a flexible, complex & robust RDBMS The evolution of hardware and the relation to Oracle Different DBA job roles(vp of DBA, developer DBA,production

More information

Oracle Enterprise Manager 12c Cloud Control for Managing Oracle E-Business Suite 12.2

Oracle Enterprise Manager 12c Cloud Control for Managing Oracle E-Business Suite 12.2 Oracle Enterprise Manager 12c Cloud Control for Managing Oracle E-Business Suite 12.2 Angelo Rosado Senior Principal Product Manager Oracle E-Business Suite Development, Applications Technology Group September

More information

#9011 GeoMedia WebMap Performance Analysis and Tuning (a quick guide to improving system performance)

#9011 GeoMedia WebMap Performance Analysis and Tuning (a quick guide to improving system performance) #9011 GeoMedia WebMap Performance Analysis and Tuning (a quick guide to improving system performance) Messina Thursday, 1:30 PM - 2:15 PM Paul F. Deaver, Sr. Consultant Security, Government & Infrastructure

More information

Oracle E-Business Suite (EBS)

Oracle E-Business Suite (EBS) Oracle E-Business Suite (EBS) What is Oracle Applications/Oracle E-Business Suite? To facilitate big businesses, Oracle Corporation have created collection of software in the category of ERP (Enterprise

More information

Oracle Database 10g. Page # The Self-Managing Database. Agenda. Benoit Dageville Oracle Corporation benoit.dageville@oracle.com

Oracle Database 10g. Page # The Self-Managing Database. Agenda. Benoit Dageville Oracle Corporation benoit.dageville@oracle.com Oracle Database 10g The Self-Managing Database Benoit Dageville Oracle Corporation benoit.dageville@oracle.com Agenda Oracle10g: Oracle s first generation of self-managing database Oracle s Approach to

More information

Tips and Tricks for Using Oracle TimesTen In-Memory Database in the Application Tier

Tips and Tricks for Using Oracle TimesTen In-Memory Database in the Application Tier Tips and Tricks for Using Oracle TimesTen In-Memory Database in the Application Tier Simon Law TimesTen Product Manager, Oracle Meet The Experts: Andy Yao TimesTen Product Manager, Oracle Gagan Singh Senior

More information

Proactive Performance Monitoring Using Metric Extensions and SPA

Proactive Performance Monitoring Using Metric Extensions and SPA Proactive Performance Monitoring Using Metric Extensions and SPA Mughees A. Minhas Oracle Redwood Shores, CA, USA Keywords: Oracle, database, performance, proactive, fix, monitor, Enterprise manager, EM,

More information

Managing R12 EBS using OEM with the Application Management and Application Change Management Packs

Managing R12 EBS using OEM with the Application Management and Application Change Management Packs Managing R12 EBS using OEM with the Application Management and Application Change Management Packs John Stouffer john.w.stouffer@gmail.com www.justadba.com John Stouffer Board Member 2010-2011, OAUG Oracle

More information

Monitoring and Diagnosing Oracle RAC Performance with Oracle Enterprise Manager. Kai Yu, Orlando Gallegos Dell Oracle Solutions Engineering

Monitoring and Diagnosing Oracle RAC Performance with Oracle Enterprise Manager. Kai Yu, Orlando Gallegos Dell Oracle Solutions Engineering Monitoring and Diagnosing Oracle RAC Performance with Oracle Enterprise Manager Kai Yu, Orlando Gallegos Dell Oracle Solutions Engineering About Author Kai Yu Senior System Engineer, Dell Oracle Solutions

More information

PERFORMANCE TUNING FOR PEOPLESOFT APPLICATIONS

PERFORMANCE TUNING FOR PEOPLESOFT APPLICATIONS PERFORMANCE TUNING FOR PEOPLESOFT APPLICATIONS 1.Introduction: It is a widely known fact that 80% of performance problems are a direct result of the to poor performance, such as server configuration, resource

More information

Upgrade Oracle EBS to Release 12.2. Presenter: Sandra Vucinic VLAD Group, Inc.

Upgrade Oracle EBS to Release 12.2. Presenter: Sandra Vucinic VLAD Group, Inc. Upgrade Oracle EBS to Release 12.2 Presenter: Sandra Vucinic VLAD Group, Inc. About Speaker Over 20 years of experience with Oracle database, applications, development and administration tools Director,

More information

Proactive database performance management

Proactive database performance management Proactive database performance management white paper 1. The Significance of IT in current business market 3 2. What is Proactive Database Performance Management? 3 Performance analysis through the Identification

More information

Siebel & Portal Performance Testing and Tuning GCP - IT Performance Practice

Siebel & Portal Performance Testing and Tuning GCP - IT Performance Practice & Portal Performance Testing and Tuning GCP - IT Performance Practice By Zubair Syed (zubair.syed@tcs.com) April 2014 Copyright 2012 Tata Consultancy Services Limited Overview A large insurance company

More information

PERFORMANCE TUNING ORACLE RAC ON LINUX

PERFORMANCE TUNING ORACLE RAC ON LINUX PERFORMANCE TUNING ORACLE RAC ON LINUX By: Edward Whalen Performance Tuning Corporation INTRODUCTION Performance tuning is an integral part of the maintenance and administration of the Oracle database

More information

Monitoring and Diagnosing Oracle RAC Performance with Oracle Enterprise Manager

Monitoring and Diagnosing Oracle RAC Performance with Oracle Enterprise Manager Monitoring and Diagnosing Oracle RAC Performance with Oracle Enterprise Manager Kai Yu, Orlando Gallegos Dell Oracle Solutions Engineering Oracle OpenWorld 2010, Session S316263 3:00-4:00pm, Thursday 23-Sep-2010

More information

Oracle Database 12c: Performance Management and Tuning NEW

Oracle Database 12c: Performance Management and Tuning NEW Oracle University Contact Us: 1.800.529.0165 Oracle Database 12c: Performance Management and Tuning NEW Duration: 5 Days What you will learn In the Oracle Database 12c: Performance Management and Tuning

More information

Data Integrator Performance Optimization Guide

Data Integrator Performance Optimization Guide Data Integrator Performance Optimization Guide Data Integrator 11.7.2 for Windows and UNIX Patents Trademarks Copyright Third-party contributors Business Objects owns the following

More information

2013 OTM SIG CONFERENCE Performance Tuning/Monitoring

2013 OTM SIG CONFERENCE Performance Tuning/Monitoring 2013 OTM SIG CONFERENCE Performance Tuning/Monitoring Alex Chang alex.chang@inspirage.com July 30, 2013 Agenda General guidelines Effective tuning goal Tuning session Tuning life cycle Common tools Case

More information

Introduction. Part I: Finding Bottlenecks when Something s Wrong. Chapter 1: Performance Tuning 3

Introduction. Part I: Finding Bottlenecks when Something s Wrong. Chapter 1: Performance Tuning 3 Wort ftoc.tex V3-12/17/2007 2:00pm Page ix Introduction xix Part I: Finding Bottlenecks when Something s Wrong Chapter 1: Performance Tuning 3 Art or Science? 3 The Science of Performance Tuning 4 The

More information

Performance Tuning and Optimizing SQL Databases 2016

Performance Tuning and Optimizing SQL Databases 2016 Performance Tuning and Optimizing SQL Databases 2016 http://www.homnick.com marketing@homnick.com +1.561.988.0567 Boca Raton, Fl USA About this course This four-day instructor-led course provides students

More information

OTM Performance OTM Users Conference 2015. Jim Mooney Vice President, Product Development August 11, 2015

OTM Performance OTM Users Conference 2015. Jim Mooney Vice President, Product Development August 11, 2015 OTM Performance OTM Users Conference 2015 Jim Mooney Vice President, Product Development August 11, 2015 1 Program Agenda 1 2 3 4 5 Scalability Refresher General Performance Tips Targeted Tips by Product

More information

LOAD BALANCING TECHNIQUES FOR RELEASE 11i AND RELEASE 12 E-BUSINESS ENVIRONMENTS

LOAD BALANCING TECHNIQUES FOR RELEASE 11i AND RELEASE 12 E-BUSINESS ENVIRONMENTS LOAD BALANCING TECHNIQUES FOR RELEASE 11i AND RELEASE 12 E-BUSINESS ENVIRONMENTS Venkat Perumal IT Convergence Introduction Any application server based on a certain CPU, memory and other configurations

More information

PeopleSoft Online Performance Guidelines

PeopleSoft Online Performance Guidelines PeopleSoft Online Performance Guidelines Agenda Introduction Web Browser configuration Web Server configuration Application Server PIA PeopleSoft Internet Architecture Introduction Pure Internet Architecture

More information

Java DB Performance. Olav Sandstå Sun Microsystems, Trondheim, Norway Submission ID: 860

Java DB Performance. Olav Sandstå Sun Microsystems, Trondheim, Norway Submission ID: 860 Java DB Performance Olav Sandstå Sun Microsystems, Trondheim, Norway Submission ID: 860 AGENDA > Java DB introduction > Configuring Java DB for performance > Programming tips > Understanding Java DB performance

More information

Monitoring HP OO 10. Overview. Available Tools. HP OO Community Guides

Monitoring HP OO 10. Overview. Available Tools. HP OO Community Guides HP OO Community Guides Monitoring HP OO 10 This document describes the specifications of components we want to monitor, and the means to monitor them, in order to achieve effective monitoring of HP Operations

More information

Configuring Apache Derby for Performance and Durability Olav Sandstå

Configuring Apache Derby for Performance and Durability Olav Sandstå Configuring Apache Derby for Performance and Durability Olav Sandstå Database Technology Group Sun Microsystems Trondheim, Norway Overview Background > Transactions, Failure Classes, Derby Architecture

More information

Transaction Performance Maximizer InterMax

Transaction Performance Maximizer InterMax Transaction Performance Maximizer InterMax A-1208 Woorim Business Center, YeomChang-Dong, GangSeo-Gu, Seoul Korea Republic. TEL 82.2.6230.6300 l FAX 80.2.6203.6301 l www.ex-em.com Transaction Performance

More information

Oracle Database 11g: SQL Tuning Workshop Release 2

Oracle Database 11g: SQL Tuning Workshop Release 2 Oracle University Contact Us: 1 800 005 453 Oracle Database 11g: SQL Tuning Workshop Release 2 Duration: 3 Days What you will learn This course assists database developers, DBAs, and SQL developers to

More information

Top 10 Performance Tips for OBI-EE

Top 10 Performance Tips for OBI-EE Top 10 Performance Tips for OBI-EE Narasimha Rao Madhuvarsu L V Bharath Terala October 2011 Apps Associates LLC Boston New York Atlanta Germany India Premier IT Professional Service and Solution Provider

More information

Oracle Database 11g: Performance Tuning DBA Release 2

Oracle Database 11g: Performance Tuning DBA Release 2 Oracle University Contact Us: 1.800.529.0165 Oracle Database 11g: Performance Tuning DBA Release 2 Duration: 5 Days What you will learn This Oracle Database 11g Performance Tuning training starts with

More information

Oracle Database 11g: SQL Tuning Workshop

Oracle Database 11g: SQL Tuning Workshop Oracle University Contact Us: + 38516306373 Oracle Database 11g: SQL Tuning Workshop Duration: 3 Days What you will learn This Oracle Database 11g: SQL Tuning Workshop Release 2 training assists database

More information

System Administration of Windchill 10.2

System Administration of Windchill 10.2 System Administration of Windchill 10.2 Overview Course Code Course Length TRN-4340-T 3 Days In this course, you will gain an understanding of how to perform routine Windchill system administration tasks,

More information

Informatica Master Data Management Multi Domain Hub API: Performance and Scalability Diagnostics Checklist

Informatica Master Data Management Multi Domain Hub API: Performance and Scalability Diagnostics Checklist Informatica Master Data Management Multi Domain Hub API: Performance and Scalability Diagnostics Checklist 2012 Informatica Corporation. No part of this document may be reproduced or transmitted in any

More information

An Oracle White Paper July 2011. Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide

An Oracle White Paper July 2011. Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide An Oracle White Paper July 2011 1 Disclaimer The following is intended to outline our general product direction.

More information

Contents Introduction... 5 Deployment Considerations... 9 Deployment Architectures... 11

Contents Introduction... 5 Deployment Considerations... 9 Deployment Architectures... 11 Oracle Primavera Contract Management 14.1 Sizing Guide July 2014 Contents Introduction... 5 Contract Management Database Server... 5 Requirements of the Contract Management Web and Application Servers...

More information

Performance Analysis of Web based Applications on Single and Multi Core Servers

Performance Analysis of Web based Applications on Single and Multi Core Servers Performance Analysis of Web based Applications on Single and Multi Core Servers Gitika Khare, Diptikant Pathy, Alpana Rajan, Alok Jain, Anil Rawat Raja Ramanna Centre for Advanced Technology Department

More information

<Insert Picture Here> Java Application Diagnostic Expert

<Insert Picture Here> Java Application Diagnostic Expert Java Application Diagnostic Expert Agenda 1. Enterprise Manager 2. Challenges 3. Java Application Diagnostics Expert (JADE) 4. Feature-Benefit Summary 5. Features Overview Diagnostic

More information

Real Application Testing. Fred Louis Oracle Enterprise Architect

Real Application Testing. Fred Louis Oracle Enterprise Architect Real Application Testing Fred Louis Oracle Enterprise Architect The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

PUBLIC Performance Optimization Guide

PUBLIC Performance Optimization Guide SAP Data Services Document Version: 4.2 Support Package 6 (14.2.6.0) 2015-11-20 PUBLIC Content 1 Welcome to SAP Data Services....6 1.1 Welcome.... 6 1.2 Documentation set for SAP Data Services....6 1.3

More information

OLTP Meets Bigdata, Challenges, Options, and Future Saibabu Devabhaktuni

OLTP Meets Bigdata, Challenges, Options, and Future Saibabu Devabhaktuni OLTP Meets Bigdata, Challenges, Options, and Future Saibabu Devabhaktuni Agenda Database trends for the past 10 years Era of Big Data and Cloud Challenges and Options Upcoming database trends Q&A Scope

More information

Performance Optimization For Operational Risk Management Application On Azure Platform

Performance Optimization For Operational Risk Management Application On Azure Platform Performance Optimization For Operational Risk Management Application On Azure Platform Ashutosh Sabde, TCS www.cmgindia.org 1 Contents Introduction Functional Requirements Non Functional Requirements Business

More information

PTC System Monitor Solution Training

PTC System Monitor Solution Training PTC System Monitor Solution Training Patrick Kulenkamp June 2012 Agenda What is PTC System Monitor (PSM)? How does it work? Terminology PSM Configuration The PTC Integrity Implementation Drilling Down

More information

http://support.oracle.com/

http://support.oracle.com/ Oracle Primavera Contract Management 14.0 Sizing Guide October 2012 Legal Notices Oracle Primavera Oracle Primavera Contract Management 14.0 Sizing Guide Copyright 1997, 2012, Oracle and/or its affiliates.

More information

Cognos8 Deployment Best Practices for Performance/Scalability. Barnaby Cole Practice Lead, Technical Services

Cognos8 Deployment Best Practices for Performance/Scalability. Barnaby Cole Practice Lead, Technical Services Cognos8 Deployment Best Practices for Performance/Scalability Barnaby Cole Practice Lead, Technical Services Agenda > Cognos 8 Architecture Overview > Cognos 8 Components > Load Balancing > Deployment

More information

New Security Features in Oracle E-Business Suite 12.2

New Security Features in Oracle E-Business Suite 12.2 New Security Features in Oracle E-Business Suite 12.2 October 24, 2013 Stephen Kost Chief Technology Officer Integrigy Corporation Phil Reimann Director of Business Development Integrigy Corporation About

More information

WHITE PAPER: TECHNICAL. Symantec High Availability Solution for Oracle e-business Suite

WHITE PAPER: TECHNICAL. Symantec High Availability Solution for Oracle e-business Suite know WHITE PAPER: TECHNICAL Symantec High Availability Solution for Oracle e-business Suite Sharad Srivastava Software Engineer Storage and Availability Management Group Sharad_Srivastava1@Symantec.com

More information

Monitor and Manage Your MicroStrategy BI Environment Using Enterprise Manager and Health Center

Monitor and Manage Your MicroStrategy BI Environment Using Enterprise Manager and Health Center Monitor and Manage Your MicroStrategy BI Environment Using Enterprise Manager and Health Center Presented by: Dennis Liao Sales Engineer Zach Rea Sales Engineer January 27 th, 2015 Session 4 This Session

More information

Tuning Tableau Server for High Performance

Tuning Tableau Server for High Performance Tuning Tableau Server for High Performance I wanna go fast PRESENT ED BY Francois Ajenstat Alan Doerhoefer Daniel Meyer Agenda What are the things that can impact performance? Tips and tricks to improve

More information

Programa de Actualización Profesional ACTI Oracle Database 11g: SQL Tuning Workshop

Programa de Actualización Profesional ACTI Oracle Database 11g: SQL Tuning Workshop Programa de Actualización Profesional ACTI Oracle Database 11g: SQL Tuning Workshop What you will learn This Oracle Database 11g SQL Tuning Workshop training is a DBA-centric course that teaches you how

More information

Microsoft SQL Server: MS-10980 Performance Tuning and Optimization Digital

Microsoft SQL Server: MS-10980 Performance Tuning and Optimization Digital coursemonster.com/us Microsoft SQL Server: MS-10980 Performance Tuning and Optimization Digital View training dates» Overview This course is designed to give the right amount of Internals knowledge and

More information

SQL Server Performance Tuning and Optimization

SQL Server Performance Tuning and Optimization 3 Riverchase Office Plaza Hoover, Alabama 35244 Phone: 205.989.4944 Fax: 855.317.2187 E-Mail: rwhitney@discoveritt.com Web: www.discoveritt.com SQL Server Performance Tuning and Optimization Course: MS10980A

More information

Effective Performance Tuning Oracle Applications

Effective Performance Tuning Oracle Applications Effective Performance Tuning Oracle Applications Target Company profile Invantive Why? General hints Case Pointers and Tools Target Introduction into performance tuning Oracle Applications. Interactive

More information

Safe Harbor Statement

Safe Harbor Statement Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment

More information

Enterprise Manager Performance Tips

Enterprise Manager Performance Tips Enterprise Manager Performance Tips + The tips below are related to common situations customers experience when their Enterprise Manager(s) are not performing consistent with performance goals. If you

More information

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC MyOra 3.0 SQL Tool for Oracle User Guide Jayam Systems, LLC Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL

More information

MS SQL Performance (Tuning) Best Practices:

MS SQL Performance (Tuning) Best Practices: MS SQL Performance (Tuning) Best Practices: 1. Don t share the SQL server hardware with other services If other workloads are running on the same server where SQL Server is running, memory and other hardware

More information

Bellwether metrics for diagnosing

Bellwether metrics for diagnosing Bellwether metrics for diagnosing performance bottlenecks Dan Downing Principal Consultant MENTORA GROUP www.mentora.com Objectives Help you identify key resource metrics that help diagnose performance

More information

Holistic Performance Analysis of J2EE Applications

Holistic Performance Analysis of J2EE Applications Holistic Performance Analysis of J2EE Applications By Madhu Tanikella In order to identify and resolve performance problems of enterprise Java Applications and reduce the time-to-market, performance analysis

More information

Most Common Database Configuration Mistakes Jože Senegačnik, Oracle ACE Director, Member of OakTable DbProf d.o.o. Ljubljana, Slovenia

Most Common Database Configuration Mistakes Jože Senegačnik, Oracle ACE Director, Member of OakTable DbProf d.o.o. Ljubljana, Slovenia Most Common Database Configuration Mistakes Jože Senegačnik, Oracle ACE Director, Member of OakTable DbProf d.o.o. Ljubljana, Slovenia Keywords Oracle Database, Configuration, Introduction The purpose

More information

Performance rule violations usually result in increased CPU or I/O, time to fix the mistake, and ultimately, a cost to the business unit.

Performance rule violations usually result in increased CPU or I/O, time to fix the mistake, and ultimately, a cost to the business unit. Is your database application experiencing poor response time, scalability problems, and too many deadlocks or poor application performance? One or a combination of zparms, database design and application

More information

Oracle Database Performance Management Best Practices Workshop. AIOUG Product Management Team Database Manageability

Oracle Database Performance Management Best Practices Workshop. AIOUG Product Management Team Database Manageability Oracle Database Performance Management Best Practices Workshop AIOUG Product Management Team Database Manageability Table of Contents Oracle DB Performance Management... 3 A. Configure SPA Quick Check...6

More information

SQL Server Business Intelligence on HP ProLiant DL785 Server

SQL Server Business Intelligence on HP ProLiant DL785 Server SQL Server Business Intelligence on HP ProLiant DL785 Server By Ajay Goyal www.scalabilityexperts.com Mike Fitzner Hewlett Packard www.hp.com Recommendations presented in this document should be thoroughly

More information

Cognos Performance Troubleshooting

Cognos Performance Troubleshooting Cognos Performance Troubleshooting Presenters James Salmon Marketing Manager James.Salmon@budgetingsolutions.co.uk Andy Ellis Senior BI Consultant Andy.Ellis@budgetingsolutions.co.uk Want to ask a question?

More information

Web Application s Performance Testing

Web Application s Performance Testing Web Application s Performance Testing B. Election Reddy (07305054) Guided by N. L. Sarda April 13, 2008 1 Contents 1 Introduction 4 2 Objectives 4 3 Performance Indicators 5 4 Types of Performance Testing

More information

Customer evaluation guide Toad for Oracle v12 Database administration

Customer evaluation guide Toad for Oracle v12 Database administration Thank you for choosing to download a Toad for Oracle trial. This guide will enable you to evaluate Toad s key technical features and business value. It can be used to evaluate the database administration

More information

1. This lesson introduces the Performance Tuning course objectives and agenda

1. This lesson introduces the Performance Tuning course objectives and agenda Oracle Database 11g: Performance Tuning The course starts with an unknown database that requires tuning. The lessons will proceed through the steps a DBA will perform to acquire the information needed

More information

MySQL Enterprise Monitor

MySQL Enterprise Monitor MySQL Enterprise Monitor Lynn Ferrante Principal Sales Consultant 1 Program Agenda MySQL Enterprise Monitor Overview Architecture Roles Demo 2 Overview 3 MySQL Enterprise Edition Highest Levels of Security,

More information

Load Testing with JMeter

Load Testing with JMeter Load Testing with JMeter Presented by Matthew Stout - mat@ucsc.edu JMeter Overview Java application for load testing and measuring performance Originally for web applications but has grown to support lots

More information

Agenda. Enterprise Application Performance Factors. Current form of Enterprise Applications. Factors to Application Performance.

Agenda. Enterprise Application Performance Factors. Current form of Enterprise Applications. Factors to Application Performance. Agenda Enterprise Performance Factors Overall Enterprise Performance Factors Best Practice for generic Enterprise Best Practice for 3-tiers Enterprise Hardware Load Balancer Basic Unix Tuning Performance

More information

Insight into Performance Testing J2EE Applications Sep 2008

Insight into Performance Testing J2EE Applications Sep 2008 Insight into Performance Testing J2EE Applications Sep 2008 Presented by Chandrasekar Thodla 2008, Cognizant Technology Solutions. All Rights Reserved. The information contained herein is subject to change

More information

An Oracle White Paper March 2013. Load Testing Best Practices for Oracle E- Business Suite using Oracle Application Testing Suite

An Oracle White Paper March 2013. Load Testing Best Practices for Oracle E- Business Suite using Oracle Application Testing Suite An Oracle White Paper March 2013 Load Testing Best Practices for Oracle E- Business Suite using Oracle Application Testing Suite Executive Overview... 1 Introduction... 1 Oracle Load Testing Setup... 2

More information

Performance Testing of Java Enterprise Systems

Performance Testing of Java Enterprise Systems Performance Testing of Java Enterprise Systems Katerina Antonova, Plamen Koychev Musala Soft Why Performance Testing? Recent studies by leading USA consultancy companies showed that over 80% of large corporations

More information

Virtual server management: Top tips on managing storage in virtual server environments

Virtual server management: Top tips on managing storage in virtual server environments Tutorial Virtual server management: Top tips on managing storage in virtual server environments Sponsored By: Top five tips for managing storage in a virtual server environment By Eric Siebert, Contributor

More information

Blackboard Learn TM, Release 9 Technology Architecture. John Fontaine

Blackboard Learn TM, Release 9 Technology Architecture. John Fontaine Blackboard Learn TM, Release 9 Technology Architecture John Fontaine Overview Background Blackboard Learn Deployment Model and Architecture Setup and Installation Common Administrative Tasks Tuning Integrating

More information

Open Mic on IBM Notes Traveler Best Practices. Date: 11 July, 2013

Open Mic on IBM Notes Traveler Best Practices. Date: 11 July, 2013 Open Mic on IBM Notes Traveler Best Practices Date: 11 July, 2013 Open Mic Team Jayesh Parmar - IBM ICS Support engineer Presenter Shrikant Ahire - IBM ICS Support engineer Presenter Ranjit Rai - IBM ICS

More information

All The Leaves Aren t Brown

All The Leaves Aren t Brown All The Leaves Aren t Brown Many Ways to Profile Your Application Code Chuck Ezell Senior Applications Tuner, datavail Agenda Value in Profiling: the When, What & Why Profiling & Profilers: the right tool

More information

Tuning WebSphere Application Server ND 7.0. Royal Cyber Inc.

Tuning WebSphere Application Server ND 7.0. Royal Cyber Inc. Tuning WebSphere Application Server ND 7.0 Royal Cyber Inc. JVM related problems Application server stops responding Server crash Hung process Out of memory condition Performance degradation Check if the

More information

Configuring Apache Derby for Performance and Durability Olav Sandstå

Configuring Apache Derby for Performance and Durability Olav Sandstå Configuring Apache Derby for Performance and Durability Olav Sandstå Sun Microsystems Trondheim, Norway Agenda Apache Derby introduction Performance and durability Performance tips Open source database

More information

Stratusphere Solutions

Stratusphere Solutions Stratusphere Solutions Deployment Best Practices Guide Introduction This guide has been authored by experts at Liquidware Labs in order to provide a baseline as well as recommendations for a best practices

More information

10 Tips for Optimizing the Performance of your Web Intelligence Reports. Jonathan Brown - SAP SESSION CODE: 0902

10 Tips for Optimizing the Performance of your Web Intelligence Reports. Jonathan Brown - SAP SESSION CODE: 0902 10 Tips for Optimizing the Performance of your Web Intelligence Reports Jonathan Brown - SAP SESSION CODE: 0902 LEARNING POINTS Find out about the common issues SAP Product Support gets asked on a regular

More information

Maximizing SQL Server Virtualization Performance

Maximizing SQL Server Virtualization Performance Maximizing SQL Server Virtualization Performance Michael Otey Senior Technical Director Windows IT Pro SQL Server Pro 1 What this presentation covers Host configuration guidelines CPU, RAM, networking

More information

Winning the J2EE Performance Game Presented to: JAVA User Group-Minnesota

Winning the J2EE Performance Game Presented to: JAVA User Group-Minnesota Winning the J2EE Performance Game Presented to: JAVA User Group-Minnesota Michelle Pregler Ball Emerging Markets Account Executive Shahrukh Niazi Sr.System Consultant Java Solutions Quest Background Agenda

More information

Oracle Enterprise Manager 12c New Capabilities for the DBA. Charlie Garry, Director, Product Management Oracle Server Technologies

Oracle Enterprise Manager 12c New Capabilities for the DBA. Charlie Garry, Director, Product Management Oracle Server Technologies Oracle Enterprise Manager 12c New Capabilities for the DBA Charlie Garry, Director, Product Management Oracle Server Technologies of DBAs admit doing nothing to address performance issues CHANGE AVOID

More information

Whitepaper: performance of SqlBulkCopy

Whitepaper: performance of SqlBulkCopy We SOLVE COMPLEX PROBLEMS of DATA MODELING and DEVELOP TOOLS and solutions to let business perform best through data analysis Whitepaper: performance of SqlBulkCopy This whitepaper provides an analysis

More information

Objectif. Participant. Prérequis. Pédagogie. Oracle Database 11g - Performance Tuning DBA Release 2. 5 Jours [35 Heures]

Objectif. Participant. Prérequis. Pédagogie. Oracle Database 11g - Performance Tuning DBA Release 2. 5 Jours [35 Heures] Plan de cours disponible à l adresse http://www.adhara.fr/.aspx Objectif Use the Oracle Database tuning methodology appropriate to the available tools Utilize database advisors to proactively tune an Oracle

More information

WebSphere Architect (Performance and Monitoring) 2011 IBM Corporation

WebSphere Architect (Performance and Monitoring) 2011 IBM Corporation Track Name: Application Infrastructure Topic : WebSphere Application Server Top 10 Performance Tuning Recommendations. Presenter Name : Vishal A Charegaonkar WebSphere Architect (Performance and Monitoring)

More information

Informix Performance Tuning using: SQLTrace, Remote DBA Monitoring and Yellowfin BI by Lester Knutsen and Mike Walker! Webcast on July 2, 2013!

Informix Performance Tuning using: SQLTrace, Remote DBA Monitoring and Yellowfin BI by Lester Knutsen and Mike Walker! Webcast on July 2, 2013! Informix Performance Tuning using: SQLTrace, Remote DBA Monitoring and Yellowfin BI by Lester Knutsen and Mike Walker! Webcast on July 2, 2013! 1! Lester Knutsen! Lester Knutsen is President of Advanced

More information

Preview of Oracle Database 12c In-Memory Option. Copyright 2013, Oracle and/or its affiliates. All rights reserved.

Preview of Oracle Database 12c In-Memory Option. Copyright 2013, Oracle and/or its affiliates. All rights reserved. Preview of Oracle Database 12c In-Memory Option 1 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any

More information

MONITORING A WEBCENTER CONTENT DEPLOYMENT WITH ENTERPRISE MANAGER

MONITORING A WEBCENTER CONTENT DEPLOYMENT WITH ENTERPRISE MANAGER MONITORING A WEBCENTER CONTENT DEPLOYMENT WITH ENTERPRISE MANAGER Andrew Bennett, TEAM Informatics, Inc. Why We Monitor During any software implementation there comes a time where a question is raised

More information

The Methodology Behind the Dell SQL Server Advisor Tool

The Methodology Behind the Dell SQL Server Advisor Tool The Methodology Behind the Dell SQL Server Advisor Tool Database Solutions Engineering By Phani MV Dell Product Group October 2009 Executive Summary The Dell SQL Server Advisor is intended to perform capacity

More information

Oracle Primavera P6 Enterprise Project Portfolio Management Performance and Sizing Guide. An Oracle White Paper October 2010

Oracle Primavera P6 Enterprise Project Portfolio Management Performance and Sizing Guide. An Oracle White Paper October 2010 Oracle Primavera P6 Enterprise Project Portfolio Management Performance and Sizing Guide An Oracle White Paper October 2010 Disclaimer The following is intended to outline our general product direction.

More information

Risk-Free Administration for Expert Database Administrators

Risk-Free Administration for Expert Database Administrators Risk-Free Administration for Expert Database Administrators Kurt Engeleiter, Oracle Jason Lentz, Cerner Bart Gaddis, Cerner Safe Harbor Statement The following is intended to outline our general product

More information

ArcGIS for Server Performance and Scalability-Testing and Monitoring Tools. Amr Wahba awahba@esri.com

ArcGIS for Server Performance and Scalability-Testing and Monitoring Tools. Amr Wahba awahba@esri.com ArcGIS for Server Performance and Scalability-Testing and Monitoring Tools Amr Wahba awahba@esri.com Introductions Who are we? - ESRI Dubai Office Target audience - GIS administrators - DBAs - Architects

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 11g Database Administration

Oracle 11g Database Administration Oracle 11g Database Administration Part 1: Oracle 11g Administration Workshop I A. Exploring the Oracle Database Architecture 1. Oracle Database Architecture Overview 2. Interacting with an Oracle Database

More information

IBM Systems and Technology Group May 2013 Thought Leadership White Paper. Faster Oracle performance with IBM FlashSystem

IBM Systems and Technology Group May 2013 Thought Leadership White Paper. Faster Oracle performance with IBM FlashSystem IBM Systems and Technology Group May 2013 Thought Leadership White Paper Faster Oracle performance with IBM FlashSystem 2 Faster Oracle performance with IBM FlashSystem Executive summary This whitepaper

More information