White Paper Oracle's Cursor Sharing for BMC Remedy Products

Size: px
Start display at page:

Download "White Paper Oracle's Cursor Sharing for BMC Remedy Products"

Transcription

1 White Paper Oracle's Cursor Sharing for BMC Remedy Products January

2 Contacting BMC Software You can access the BMC Software website at From this website, you can obtain information about the company, its products, corporate offices, special events, and career opportunities. United States and Canada Address BMC SOFTWARE INC 2101 CITYWEST BLVD HOUSTON TX USA Outside United States and Canada Telephone or Telephone (01) Fax (01) Fax If you have comments or suggestions about this documentation, contact Information Development by at Copyright BMC Software, Inc., as an unpublished work. All rights reserved. BMC Software, the BMC Software logos, and all other BMC Software product or service names are registered trademarks or trademarks of BMC Software, Inc. All other trademarks belong to their respective companies. BMC Software considers information included in this documentation to be proprietary and confidential. Your use of this information is subject to the terms and conditions of the applicable End User License Agreement for the product and the proprietary and restricted rights notices included in this documentation. Restricted Rights Legend U.S. Government Restricted Rights to Computer Software. UNPUBLISHED -- RIGHTS RESERVED UNDER THE COPYRIGHT LAWS OF THE UNITED STATES. Use, duplication, or disclosure of any data and computer software by the U.S. Government is subject to restrictions, as applicable, set forth in FAR Section , DFARS , DFARS , DFARS , and DFARS , as amended from time to time. Contractor/Manufacturer is BMC Software, Inc., 2101 CityWest Blvd., Houston, TX , USA. Any contract notices should be sent to this address.

3 Customer Support You can obtain technical support by using the Support page on the BMC Software website or by contacting Customer Support by telephone or . To expedite your inquiry, please see Before Contacting BMC Software. Support website You can obtain technical support from BMC Software 24 hours a day, 7 days a week at From this website, you can Read overviews about support services and programs that BMC Software offers. Find the most current information about BMC Software products. Search a database for problems similar to yours and possible solutions. Order or download product documentation. Report a problem or ask a question. Subscribe to receive notices when new product versions are released. Find worldwide BMC Software support center locations and contact information, including addresses, fax numbers, and telephone numbers. Support by telephone or In the United States and Canada, if you need technical support and do not have access to the web, call or send an message to support@bmc.com. Outside the United States and Canada, contact your local support center for assistance. Before contacting BMC Software Have the following information available so that Customer Support can begin working on your issue immediately: Product information Product name Product version (release number) License number and password (trial or permanent) Operating system and environment information Machine type Operating system type, version, and service pack System hardware configuration Serial numbers Related software (database, application, and communication) including type, version, and service pack or maintenance level Sequence of events leading to the problem Commands and options that you used Messages received (and the time and date that you received them) Product error messages Messages from the operating system, such as file system full Messages from related software 3

4 4 Oracle's Cursor Sharing for BMC Remedy Products

5 White Paper Oracle's Cursor Sharing for BMC Remedy Products Cursor sharing has substantial benefits, and using it is a clear best practice for BMC Remedy products. This white paper summarizes the expected benefits and the risks from using this setting. Those already familiar with this technology can go to BMC Remedy product interaction and settings on page 7 for specific usage recommendations. Oracle shared pool usage and functionality of cursor sharing Oracle's primary central memory structure is called the System Global Area (SGA). The SGA has two primary parts:! Buffer cache Used to cache data! Shared pool Used to cache SQL statements When an SQL statement is to be executed, a cursor is opened in the shared pool, the statement is parsed, and it is associated with the open cursor and is ready to execute. The next time that statement is encountered, if it is still in the shared pool then it can be reused immediately (if the cursor is programmatically left open) and after a soft parse operation (if the cursor has been closed). Scalable use of an Oracle database depends on achieving good reuse of SQL statements, and soft parsing of such SQL is very efficient. If the SQL statement cannot be reused, then it will again be parsed entirely (called a hard parse), which is an expensive operation. An SQL statement will have variables, and if these variables are hardcoded into the text of the SQL statement, then they are called literal variables. If, on the other hand, a variable is included in the SQL statement (in the format of :variable_name), and that variable is instantiated before execution of the statement, then the statement is using a bind variable. SQL statements that use literals are generally not reusable as the shared pool stores a different copy of the SQL statement for each literal used in the statement. These SQL statements cannot share an existing cursor because the literal is changed during application execution. Conversely, statements with bind variables are reused no matter how many different instantiations of the variable there are, and hence result in better shared pool use. Oracle's Cursor Sharing for BMC Remedy Products! 5

6 White Paper Cursor_sharing is the Oracle technology that automatically replaces literal variables with system-generated bind variables. Setting cursor_sharing to force or similar enables sharing of literal SQL statements. When cursor_sharing is enabled, the system generated bind variables are visible in the SQL being executed, as literals are replaced with binds of the format ":sys_b_n", where n is an integer, indicating a system-generated bind variable has been created. The difference between force and similar is somewhat subtle, so it is generally less important which setting to use. More important is to make sure that one of these settings is enabled for an application that does not use bind variables. With the setting of similar, SQL statements that are likely to change their execution plan (especially when histograms are present) will not have automatically generated bind variables used. Force will generate these bind variables even in such cases. Performance effects of cursor sharing Any application that uses all literals without cursor sharing enabled is not a very scalable application. It is assumed that any good database application finds the majority of its SQL statements available for reuse in a shared pool when they are executed. Poor reuse of the shared pool means that Oracle must find a new space to allocate a cursor within the shared pool every time a statement is encountered. A least-recently-used (LRU) algorithm is used to determine what cursors should be removed if Oracle needs to create new free space in the shared pool. As the shared pool gets full with unshared statements, then the overhead in finding such memory to free gets higher. Larger shared pools actually increase this overhead as the larger shared pool becomes full and fragmented, and the LRU algorithm has higher cost to evaluate. Applications that do not reuse SQL often run better with smaller shared pools rather than larger ones. Additionally, to remove existing cursors and open new ones, Oracle must latch some memory structures. Specifically, it takes out library cache latches and shared pool latches, which may result in latch contention in a database running such an application. Specific diagnostics that indicate poor reuse of SQL are found in statspack (Oracle 8i and Oracle 9i) and AWR reports (oracle 10g). In the shared pool summary on the first page of the report, the shared pool memory grows quickly until its percentage used is roughly 90%. It never reaches 100%, as the LRU freeing algorithm continues to remove cursors to make more space for new statements. The next line in the report shows that the percentage of statements run more than once (that is, >1) is relatively low, such as 20 40%. Similarly the amount of memory allocated to statements that are run more than once is between 20% and 50% (depending on how large the reused statements happen to be). Next, such an application should show latch contention. In AWR reports, this is stated explicitly as library cache and shared pool latch wait events in the wait event list. The statspack indicates only that there is a latch free wait event, and then later in the report, it indicates which latch is under contention (typically, library cache latch first, and shared pool latch second). 6 "Oracle's Cursor Sharing for BMC Remedy Products

7 Oracle's Cursor Sharing for BMC Remedy Products Enabling cursor_sharing significantly reduces the shared pool maintenance overhead, as well as the latch contention overhead. The benefits for high-load online transaction processing (OLTP) applications can be as much as 10% or 20% CPU utilization reduction, as well as an inherently more scalable application profile. The benefits will be higher for higher load applications, and may reduce response time and provide better database performance overall. BMC Remedy product interaction and settings There is one significant conflict between the use of cursor_sharing and BMC Remedy products. Inserts into a Long Raw column while cursor_sharing is enabled can cause the BMC Remedy Action Request System (AR System ) server thread to hang. Such inserts are commonly done as part of the Engine activity when attachments are included in messages. To avoid any impact from this issue, AR System server code explicitly disables cursor_sharing (that is, sets it to exact) when doing such an insert into a Long Raw column. However, it first needs to know that the current setting is not already exact. To get the current setting, the AR System server looks in the ar.conf file, where the cursor_sharing setting must be set to reflect the init.ora settings from Oracle. If the ar.conf file does not reflect the init.ora settings, then the AR System server assumes the value is already exact and, therefore, will not reset it when doing inserts into Long Raw columns. This issue was first fixed in AR System server version However, the workaround above was only done for the case of cursor_sharing=force. Users of this server version should only set cursor_sharing=force and always reflect that setting in ar.conf. In versions 6.3 and 7.0, both settings cursor_sharing=force and cursor_sharing=similar are respected, and the workaround is implemented for both cases. So users of these product versions can use either setting, and once again need to reflect that setting in the ar.conf file. Best practices mandate specifically that, with 6.0.1, users should use force, and with 6.3 or 7.0, users should use similar, but the difference between the two settings is small. The syntax of the cursor_sharing setting in the ar.conf file is as follows (set only one):! Oracle-Cursor-Sharing: SIMILAR! Oracle-Cursor-Sharing: FORCE Resolved defects related to cursor_sharing include:! SW ! SW ! SW BMC Remedy product interaction and settings! 7

8 White Paper! SW ! SW "Oracle's Cursor Sharing for BMC Remedy Products

9

10 *67831* *67831* *67831* *67831* *67831*

Automating Service Request Creation Using Web Services in BMC Service Request Management 2.0

Automating Service Request Creation Using Web Services in BMC Service Request Management 2.0 White paper Automating Service Request Creation Using Web Services in BMC Service Request Management 2.0 June 2007 www.bmc.com Contacting BMC Software You can access the BMC Software website at http://www.bmc.com.

More information

BMC Remedy Action Request System Service Pack 1 Upgrade Procedures and Guidelines

BMC Remedy Action Request System Service Pack 1 Upgrade Procedures and Guidelines BMC Remedy Action Request System 7.6.04 Service Pack 1 Upgrade Procedures and Guidelines White Paper Supporting BMC Remedy Action Request System BMC Remedy IT Service Management Suite 7.6.04 SP1 May 2011

More information

BMC Remedy IT Service Management Data Management Administrator s Guide

BMC Remedy IT Service Management Data Management Administrator s Guide BMC Remedy IT Service Management 7.5.00 Data Management Administrator s Guide January 2009 www.bmc.com Contacting BMC Software You can access the BMC Software website at http://www.bmc.com. From this website,

More information

BMC Remedy Action Request System Using a BIRT Editor to Create or Modify Web Reports

BMC Remedy Action Request System Using a BIRT Editor to Create or Modify Web Reports White Paper BMC Remedy Action Request System 7.6.04 Using a BIRT Editor to Create or Modify Web Reports September 2012 www.bmc.com Contacting BMC Software You can access the BMC Software website at http://www.bmc.com.

More information

BMC Remedy Knowledge Management Administration Guide

BMC Remedy Knowledge Management Administration Guide BMC Remedy Knowledge Management 7.6.04 Administration Guide January 2011 www.bmc.com Contacting BMC Software You can access the BMC Software website at http://www.bmc.com. From this website, you can obtain

More information

Blackout KM for PATROL Reference Guide

Blackout KM for PATROL Reference Guide Blackout KM for PATROL Guide Supporting November 2008 Contacting BMC Software You can access the BMC Software Web site at http://www.bmc.com/. From this Web site, you can obtain information about the company,

More information

BMC ProactiveNet Performance Management - IBM SVC Storage Monitoring

BMC ProactiveNet Performance Management - IBM SVC Storage Monitoring USER DOCUMENTATION STORAGE MONITORING BMC ProactiveNet Performance Management - IBM SVC Storage Monitoring Version 1.2.00 February 2015 Contacting BMC Software You can access the BMC Software Web site

More information

OS/390 and z/os. Installer Guide. Supporting. OS/390 and z/os Installer November 2008

OS/390 and z/os. Installer Guide. Supporting. OS/390 and z/os Installer November 2008 OS/390 and z/os Installer Guide Supporting OS/390 and z/os Installer 2.2 November 2008 www.bmc.com Contacting BMC Software You can access the BMC Software website at http://www.bmc.com. From this website,

More information

Introduction. Assessment Test. Chapter 1 Introduction to Performance Tuning 1. Chapter 2 Sources of Tuning Information 33

Introduction. Assessment Test. Chapter 1 Introduction to Performance Tuning 1. Chapter 2 Sources of Tuning Information 33 Contents at a Glance Introduction Assessment Test xvii xxvii Chapter 1 Introduction to Performance Tuning 1 Chapter 2 Sources of Tuning Information 33 Chapter 3 SQL Application Tuning and Design 85 Chapter

More information

BMC Performance Manager Express for Hitachi Disk Arrays

BMC Performance Manager Express for Hitachi Disk Arrays BMC Performance Manager Express for Hitachi Disk Arrays User Documentation December 2012 Contacting BMC Software You can access the BMC Software Web site at http://www.bmc.com/. From this Web site, you

More information

Hardware Sentry Knowledge Module for PATROL by Sentry Software Reference Guide

Hardware Sentry Knowledge Module for PATROL by Sentry Software Reference Guide Hardware Sentry Knowledge Module for PATROL by Sentry Software Supporting Hardware Sentry Knowledge Module for PATROL version 1.3 by Sentry Software August 1, 2005 Contacting BMC Software You can access

More information

PATROL Central Infrastructure

PATROL Central Infrastructure PATROL Central Infrastructure Best Practices Guide Supporting PATROL Agent version 3.6 PATROL Central Operator Web Edition version 7.1.10.01 PATROL Central Operator Microsoft Windows Edition version 7.5.00

More information

BMC Performance Manager Express for Hitachi Disk Arrays

BMC Performance Manager Express for Hitachi Disk Arrays USER DOCUMENTATION STORAGE MONITORING BMC Performance Manager Express for Hitachi Disk Arrays Version 2.1.01 February 2015 Contacting BMC Software You can access the BMC Software Web site at http://www.bmc.com.

More information

CONTROL-M/Agent for UNIX and Microsoft Windows

CONTROL-M/Agent for UNIX and Microsoft Windows CONTROL-M/Agent for UNIX and Microsoft Windows Windows Administrator Guide Supporting CONTROL-M/Agent for Windows version 6.2.01 September 15, 2005 Contacting BMC Software You can access the BMC Software

More information

Copyright 2004 BMC Software, Inc. All rights reserved. BMC Software, the BMC Software logos, and all other BMC Software product or service names are r

Copyright 2004 BMC Software, Inc. All rights reserved. BMC Software, the BMC Software logos, and all other BMC Software product or service names are r CONTROL-M/Agent for Microsoft Windows Administrator Guide Version 6.1.03 March 31, 2004 Copyright 2004 BMC Software, Inc. All rights reserved. BMC Software, the BMC Software logos, and all other BMC Software

More information

BMC Remedy Action Request System Concepts Guide

BMC Remedy Action Request System Concepts Guide BMC Remedy Action Request System 7.6.04 Concepts Guide January 2011 www.bmc.com Contacting BMC Software You can access the BMC Software website at http://www.bmc.com. From this website, you can obtain

More information

Oracle9i Database: Advanced Instance Tuning

Oracle9i Database: Advanced Instance Tuning Oracle9i Database: Advanced Instance Tuning Student Guide D16442GC10 Edition 1.0 December 2002 D37574 Authors Lex de Haan Joel Goodman Technical Contributors and Reviewers Scott Gossett Christine Jeal

More information

White Paper September 27, BMC Remedy IT Service Management 7.0. Integrations. BMC Software Inc.

White Paper September 27, BMC Remedy IT Service Management 7.0. Integrations. BMC Software Inc. White Paper September 27, 2006 BMC Remedy IT Service Management 7.0 Integrations Copyright 1991 2006 BMC Software, Inc. All rights reserved. BMC, the BMC logo, all other BMC product or service names, BMC

More information

CA Workload Automation Agent for Micro Focus

CA Workload Automation Agent for Micro Focus CA Workload Automation Agent for Micro Focus Release Notes r11.3.3 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

The Self-Managing Database: Automatic SGA Memory Management. An Oracle White Paper Nov. 2003

The Self-Managing Database: Automatic SGA Memory Management. An Oracle White Paper Nov. 2003 The Self-Managing Database: Automatic SGA Memory Management An Oracle White Paper Nov. 2003 The Self-Managing Database: Automatic SGA Memory Management Introduction... 3 Current Challenges... 3 Introducing

More information

PATROL for BEA WebLogic User Guide. Version

PATROL for BEA WebLogic User Guide. Version PATROL for BEA WebLogic User Guide Version 2.2.00 June 23, 2003 Copyright 2003 BMC Software, Inc., as an unpublished work. All rights reserved. BMC Software, the BMC Software logos, and all other BMC Software

More information

Oralogic Education Systems

Oralogic Education Systems Oralogic Education Systems Next Generation IT Education Systems Introduction: In the Oracle Database 12c: Performance Management and Tuning course, learn about the performance analysis and tuning tasks

More information

CA SiteMinder. Advanced Password Services Release Notes 12.52

CA SiteMinder. Advanced Password Services Release Notes 12.52 CA SiteMinder Advanced Password Services Release Notes 12.52 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Arcserve Backup for Windows

Arcserve Backup for Windows Arcserve Backup for Windows Agent for Sybase Guide r17.0 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Managing Oracle Real Application Clusters. An Oracle White Paper January 2002

Managing Oracle Real Application Clusters. An Oracle White Paper January 2002 Managing Oracle Real Application Clusters An Oracle White Paper January 2002 Managing Oracle Real Application Clusters Overview...3 Installation and Configuration...3 Oracle Software Installation on a

More information

CA IDMS Using DB Analyzer

CA IDMS Using DB Analyzer Using DB Analyzer Date: 15-Jan-2018 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational

More information

Oracle Database 12c: Performance Management and Tuning

Oracle Database 12c: Performance Management and Tuning Oracle University Contact Us: +43 (0)1 33 777 401 Oracle Database 12c: Performance Management and Tuning Duration: 5 Days What you will learn In the Oracle Database 12c: Performance Management and Tuning

More information

CONTROL-M/Control Module for SAP

CONTROL-M/Control Module for SAP CONTROL-M/Control Module for SAP Administrator Guide Supporting CONTROL-M/CM for SAP 6.3.01 October 2007 www.bmc.com Contacting BMC Software You can access the BMC Software website at http://www.bmc.com.

More information

EZY Intellect Pte. Ltd., #1 Changi North Street 1, Singapore

EZY Intellect Pte. Ltd., #1 Changi North Street 1, Singapore Oracle Database 12c: Performance Management and Tuning NEW Duration: 5 Days What you will learn In the Oracle Database 12c: Performance Management and Tuning course, learn about the performance analysis

More information

Oracle Tuning Pack. Table Of Contents. 1 Introduction. 2 Installation and Configuration. 3 Documentation and Help. 4 Oracle SQL Analyze

Oracle Tuning Pack. Table Of Contents. 1 Introduction. 2 Installation and Configuration. 3 Documentation and Help. 4 Oracle SQL Analyze Oracle Tuning Pack Readme Release 2.1.0.0.0 for Windows February 2000 Part No. A76921-01 Table Of Contents 1 Introduction 2 Installation and Configuration 3 Documentation and Help 4 Oracle SQL Analyze

More information

PERFORMANCE TUNING TRAINING IN BANGALORE

PERFORMANCE TUNING TRAINING IN BANGALORE PERFORMANCE TUNING TRAINING IN BANGALORE TIB ACADEMY #5/3 BEML LAYOUT, VARATHUR MAIN ROAD KUNDALAHALLI GATE, BANGALORE 560066 PH: +91-9513332301/2302 WWW.TRAINININGBANGALORE.COM Oracle Database 11g: Performance

More information

Legal Notices Copyright 1999, 2009 BMC Software, Inc. Copyright Numara Software, Inc.

Legal Notices Copyright 1999, 2009 BMC Software, Inc. Copyright Numara Software, Inc. Legal Notices Copyright 1999, 2009 BMC Software, Inc. Copyright 1996-2014 Numara Software, Inc. BMC, BMC Software, and the BMC Software logo are the exclusive properties of BMC Software, Inc., are registered

More information

Oracle Database 10g Resource Manager. An Oracle White Paper October 2005

Oracle Database 10g Resource Manager. An Oracle White Paper October 2005 Oracle Database 10g Resource Manager An Oracle White Paper October 2005 Oracle Database 10g Resource Manager INTRODUCTION... 3 SYSTEM AND RESOURCE MANAGEMENT... 3 ESTABLISHING RESOURCE PLANS AND POLICIES...

More information

About these Release Notes. Documentation Accessibility. New Features in Pro*COBOL

About these Release Notes. Documentation Accessibility. New Features in Pro*COBOL Pro*COBOL Release Notes 12c Release 1 (12.1) E18407-06 April 2013 About these Release Notes This document contains important information about Pro*COBOL 12c Release 1 (12.1). It contains the following

More information

Technical Bulletin. Problems corrected by the patch

Technical Bulletin. Problems corrected by the patch Technical Bulletin PATROL Knowledge Module for Event Management Version 2.8.10.01 January 06, 2012 Patch 2.8.10.01 for resolving various issues BMC Software is informing users that patch 2.8.10.01 of the

More information

Table Compression in Oracle9i Release2. An Oracle White Paper May 2002

Table Compression in Oracle9i Release2. An Oracle White Paper May 2002 Table Compression in Oracle9i Release2 An Oracle White Paper May 2002 Table Compression in Oracle9i Release2 Executive Overview...3 Introduction...3 How It works...3 What can be compressed...4 Cost and

More information

About these Release Notes. This document contains important information about Pro*COBOL 12c Release 2 (12.2).

About these Release Notes. This document contains important information about Pro*COBOL 12c Release 2 (12.2). Pro*COBOL Release Notes 12c Release 2 (12.2) E85817-01 May 2017 Release Notes About these Release Notes This document contains important information about Pro*COBOL 12c Release 2 (12.2). It contains the

More information

DB2. Migration Guide. DB2 Version 9 GC

DB2. Migration Guide. DB2 Version 9 GC DB2 DB2 Version 9 for Linux, UNIX, and Windows Migration Guide GC10-4237-00 DB2 DB2 Version 9 for Linux, UNIX, and Windows Migration Guide GC10-4237-00 Before using this information and the product it

More information

BRM Accelerator Release Notes - On Premise. Service Pack

BRM Accelerator Release Notes - On Premise. Service Pack BRM Accelerator Release Notes - On Premise Service Pack 03.0.02 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Architettura Database Oracle

Architettura Database Oracle Architettura Database Oracle Shared Pool La shared pool consiste di: Data dictionary: cache che contiene informazioni relative agli oggetti del databse, lo storage ed i privilegi Library cache: contiene

More information

CA IDMS Server. Release Notes. r17

CA IDMS Server. Release Notes. r17 CA IDMS Server Release Notes r17 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational

More information

CA Nimsoft Service Desk

CA Nimsoft Service Desk CA Nimsoft Service Desk Release Notes 7.0.7.4 P03 Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being changed,

More information

SmartPlant 3D MHE Training. Overview

SmartPlant 3D MHE Training. Overview SmartPlant 3D MHE Training Overview Version 2011 Copyright Copyright 2009 Intergraph Corporation. All Rights Reserved. Including software, file formats, and audiovisual displays; may be used pursuant to

More information

Defining Constants and Variables for Oracle Java CAPS Environments

Defining Constants and Variables for Oracle Java CAPS Environments Defining Constants and Variables for Oracle Java CAPS Environments Part No: 821 2547 March 2011 Copyright 2008, 2011, Oracle and/or its affiliates. All rights reserved. License Restrictions Warranty/Consequential

More information

SQL Gone Wild: Taming Bad SQL the Easy Way (or the Hard Way) Sergey Koltakov Product Manager, Database Manageability

SQL Gone Wild: Taming Bad SQL the Easy Way (or the Hard Way) Sergey Koltakov Product Manager, Database Manageability SQL Gone Wild: Taming Bad SQL the Easy Way (or the Hard Way) Sergey Koltakov Product Manager, Database Manageability Oracle Enterprise Manager Top-Down, Integrated Application Management Complete, Open,

More information

Oracle Database 11g: SQL Tuning Workshop. Student Guide

Oracle Database 11g: SQL Tuning Workshop. Student Guide Oracle Database 11g: SQL Tuning Workshop Student Guide D52163GC10 Edition 1.0 June 2008 Author Jean-François Verrier Technical Contributors and Reviewers Muriel Fry (Special thanks) Joel Goodman Harald

More information

IBM Tivoli Monitoring for Databases. Release Notes. Version SC

IBM Tivoli Monitoring for Databases. Release Notes. Version SC IBM Tivoli Monitoring for Databases Release Notes Version 5.1.1 SC23-4851-00 IBM Tivoli Monitoring for Databases Release Notes Version 5.1.1 SC23-4851-00 Note Before using this information and the product

More information

CA Cloud Service Delivery Platform

CA Cloud Service Delivery Platform CA Cloud Service Delivery Platform Service Problems and Faults Release 1.1 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as

More information

An Oracle White Paper June Exadata Hybrid Columnar Compression (EHCC)

An Oracle White Paper June Exadata Hybrid Columnar Compression (EHCC) An Oracle White Paper June 2011 (EHCC) Introduction... 3 : Technology Overview... 4 Warehouse Compression... 6 Archive Compression... 7 Conclusion... 9 Introduction enables the highest levels of data compression

More information

CA Cloud Service Delivery Platform

CA Cloud Service Delivery Platform CA Cloud Service Delivery Platform Monitor Performance Release 1.1 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

BMC Performance Manager Express Monitoring Studio by Sentry Software

BMC Performance Manager Express Monitoring Studio by Sentry Software BMC Performance Manager Express Monitoring Studio by Sentry Software TM Installation Guide Version 5.15 May 2010 Contacting BMC Software You ca n a cces s the BMC Softwa re Web s i te a t http://www.bmc.com/.

More information

CA Unified Infrastructure Management

CA Unified Infrastructure Management CA Unified Infrastructure Management clariion Release Notes All series Copyright Notice This online help system (the "System") is for your informational purposes only and is subject to change or withdrawal

More information

erwin Data Modeler Editing Forward Engineering Templates Release 9.7

erwin Data Modeler Editing Forward Engineering Templates Release 9.7 erwin Data Modeler Editing Forward Engineering Templates Release 9.7 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation

More information

Oracle Database 11g: Performance Tuning DBA Release 2

Oracle Database 11g: Performance Tuning DBA Release 2 Course Code: OC11PTDBAR2 Vendor: Oracle Course Overview Duration: 5 RRP: POA Oracle Database 11g: Performance Tuning DBA Release 2 Overview This course starts with an unknown database that requires tuning.

More information

IBM. IBM i2 Analyze Windows Upgrade Guide. Version 4 Release 1 SC

IBM. IBM i2 Analyze Windows Upgrade Guide. Version 4 Release 1 SC IBM IBM i2 Analyze Windows Upgrade Guide Version 4 Release 1 SC27-5091-00 Note Before using this information and the product it supports, read the information in Notices on page 19. This edition applies

More information

CA ERwin Data Modeler

CA ERwin Data Modeler CA ERwin Data Modeler Installation Guide Release 9.6.0 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation ),

More information

PPM Essentials Accelerator Product Guide - On Premise. Service Pack

PPM Essentials Accelerator Product Guide - On Premise. Service Pack PPM Essentials Accelerator Product Guide - On Premise Service Pack 02.0.02 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as

More information

JD Edwards EnterpriseOne Licensing

JD Edwards EnterpriseOne Licensing JD Edwards EnterpriseOne Licensing Disabling Client Licensing for Various Tools Releases 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 5 Disclaimer The following is intended to outline our general

More information

CA SSO. Agent for Oracle PeopleSoft Release Notes. r12.51

CA SSO. Agent for Oracle PeopleSoft Release Notes. r12.51 CA SSO Agent for Oracle PeopleSoft Release Notes r12.51 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation ),

More information

OpenPlant PowerPID. How to Add Service Key-in that Drives Component Template at Placement and Post Placement. Version 2.0

OpenPlant PowerPID. How to Add Service Key-in that Drives Component Template at Placement and Post Placement. Version 2.0 OpenPlant PowerPID How to Add Service Key-in that Drives Component Template at November 21, 2012 Trademarks Bentley, the B Bentley logo, MicroStation, ProjectWise and AutoPLANT are registered trademarks

More information

Release Notes. BMC Performance Manager Express for Hardware by Sentry Software Version January 18, 2007

Release Notes. BMC Performance Manager Express for Hardware by Sentry Software Version January 18, 2007 Release Notes BMC Performance Manager Express for Hardware Version 2.3.00 January 18, 2007 Sentry Software is releasing version 2.3.00 of the BMC Performance Manager Express for Hardware. These release

More information

Custom Performance Reporting Changes in Oracle 10g. Brian Doyle BEZ Systems VP, Product Service

Custom Performance Reporting Changes in Oracle 10g. Brian Doyle BEZ Systems VP, Product Service Custom Performance Reporting Changes in Oracle 10g Brian Doyle BEZ Systems VP, Product Service Email: bdoyle@bez.com (617) 532-8804 1 2 Agenda Topics to be discussed. RAC data capture using GV$ views Parallel

More information

CA Clarity Project & Portfolio Manager

CA Clarity Project & Portfolio Manager CA Clarity Project & Portfolio Manager CA Clarity PPM Connector for Microsoft SharePoint Product Guide v1.1.0 Second Edition This documentation and any related computer software help programs (hereinafter

More information

Oracle Database 12c Performance Management and Tuning

Oracle Database 12c Performance Management and Tuning Course Code: OC12CPMT Vendor: Oracle Course Overview Duration: 5 RRP: POA Oracle Database 12c Performance Management and Tuning Overview In the Oracle Database 12c: Performance Management and Tuning course,

More information

Taming Banner 7 on Oracle 10g

Taming Banner 7 on Oracle 10g SUNGARD SUMMIT 2007 sungardsummit.com 1 Taming Banner 7 on Oracle 10g Presented by: Scott Harden University of Illinois March 20, 2007 Course ID: 58 A Community of Learning Session Rules of Etiquette Please

More information

Adaptive Cursor Sharing: An Introduction

Adaptive Cursor Sharing: An Introduction Adaptive Cursor Sharing: An Introduction Harald van Breederode Oracle University 17-NOV-2010 1-1 About Me Senior Principal DBA Trainer Oracle University 25 years Unix Experience 12 years Oracle DBA Experience

More information

CA Cloud Service Delivery Platform

CA Cloud Service Delivery Platform CA Cloud Service Delivery Platform Demand Manager Release 1.1 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

High Availability through Warm-Standby Support in Sybase Replication Server A Whitepaper from Sybase, Inc.

High Availability through Warm-Standby Support in Sybase Replication Server A Whitepaper from Sybase, Inc. High Availability through Warm-Standby Support in Sybase Replication Server A Whitepaper from Sybase, Inc. Table of Contents Section I: The Need for Warm Standby...2 The Business Problem...2 Section II:

More information

eb ProjectWise Connection Services

eb ProjectWise Connection Services eb ProjectWise Connection Services INSTALLATION & ADMIN GUIDE D003483 rev 2.0 TRADEMARK NOTICE Bentley and the "B" Bentley logo are registered or non-registered trademarks of Bentley Systems, Inc. or Bentley

More information

Rapid SQL 7.6 Installation Guide

Rapid SQL 7.6 Installation Guide Rapid SQL 7.6 Installation Guide Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. All rights reserved.

More information

IBM Storage Management Pack for Microsoft System Center Operations Manager (SCOM) Version Release Notes IBM

IBM Storage Management Pack for Microsoft System Center Operations Manager (SCOM) Version Release Notes IBM IBM Storage Management Pack for Microsoft System Center Operations Manager (SCOM) Version 2.5.0 Release Notes IBM First Edition (July 2016) This edition applies to version 2.5.0 of the IBM Storage Management

More information

SmartPlant Materials Materials Price Lists

SmartPlant Materials Materials Price Lists SmartPlant Materials Materials Price Lists Version 2008.2 (6.3.3) January 2009 DMAR1-PE-200132A Copyright Copyright 2009 Intergraph Corporation. All Rights Reserved. Including software, file formats, and

More information

DBArtisan 8.6 Installation Guide

DBArtisan 8.6 Installation Guide DBArtisan 8.6 Installation Guide Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. All rights reserved.

More information

Oracle Performance Tuning. Overview of performance tuning strategies

Oracle Performance Tuning. Overview of performance tuning strategies Oracle Performance Tuning Overview of performance tuning strategies Allan Young June 2008 What is tuning? Group of activities used to optimize and homogenize the performance of a database Maximize use

More information

Introduction. Architecture Overview

Introduction. Architecture Overview Performance and Sizing Guide Version 17 November 2017 Contents Introduction... 5 Architecture Overview... 5 Performance and Scalability Considerations... 6 Vertical Scaling... 7 JVM Heap Sizes... 7 Hardware

More information

Limitations and Workarounds Supplement

Limitations and Workarounds Supplement IBM Tivoli Monitoring for Databases: Microsoft SQL Server Limitations and Workarounds Supplement Version 5.1.1 SC23-4850-00 IBM Tivoli Monitoring for Databases: Microsoft SQL Server Limitations and Workarounds

More information

What is Real Application Testing?

What is Real Application Testing? Real Application Testing Real Application Testing Enterprise Manager Management Packs Enhancements What is Real Application Testing? New database option available with EE only Includes two new features

More information

Oracle Enterprise Manager

Oracle Enterprise Manager Oracle Enterprise Manager Management Agent Release Notes for HP-UX Itanium 10g Release 2 (10.2.0.1) B28767-01 April 2006 These Release Notes identify differences between the delivered Oracle Enterprise

More information

Release Notes. Release 12.2

Release Notes. Release 12.2 Release Notes Release 12.2 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation ), is for your informational purposes

More information

Oracle Database 11g: Performance Tuning DBA Release 2

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

More information

Oracle SQL Developer TimesTen In-Memory Database Support

Oracle SQL Developer TimesTen In-Memory Database Support Oracle SQL Developer TimesTen In-Memory Database Support Release Notes Release 2.1 E15859-03 March 2010 This document provides late-breaking information as well as information that is not yet part of the

More information

Oracle Database Performance Tuning

Oracle Database Performance Tuning Oracle Database Performance Tuning For RESTAURANTS Case Study COMPANY CLIENT PROFILE: Restaurants is the name of a grand and passionate journey of flavours, unraveling authentic cuisines and sharing them

More information

An Oracle White Paper October Advanced Compression with Oracle Database 11g

An Oracle White Paper October Advanced Compression with Oracle Database 11g An Oracle White Paper October 2011 Advanced Compression with Oracle Database 11g Oracle White Paper Advanced Compression with Oracle Database 11g Introduction... 3 Oracle Advanced Compression... 4 Compression

More information

CA Performance Management for OpenVMS

CA Performance Management for OpenVMS CA Performance Management for OpenVMS Release Summary r3.1 This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational

More information

Using Oracle STATSPACK to assist with Application Performance Tuning

Using Oracle STATSPACK to assist with Application Performance Tuning Using Oracle STATSPACK to assist with Application Performance Tuning Scenario You are experiencing periodic performance problems with an application that uses a back-end Oracle database. Solution Introduction

More information

IBM Storage Host Attachment Kit for HP-UX Version Release Notes IBM

IBM Storage Host Attachment Kit for HP-UX Version Release Notes IBM IBM Storage Host Attachment Kit for HP-UX Version 2.6.0 Release Notes IBM First Edition (April 2016) This document edition applies to version 2.6.0 of the IBM Storage Host Attachment Kit for HP-UX software

More information

Performance Characterization of ONTAP Cloud in Azure with Application Workloads

Performance Characterization of ONTAP Cloud in Azure with Application Workloads Technical Report Performance Characterization of ONTAP Cloud in NetApp Data Fabric Group, NetApp March 2018 TR-4671 Abstract This technical report examines the performance and fit of application workloads

More information

Nimsoft Monitor. xendesktop Release Notes. All series

Nimsoft Monitor. xendesktop Release Notes. All series Nimsoft Monitor xendesktop Release Notes All series Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being

More information

Enterprise SA Running Reports Created on 2/4/2010 9:13:00 AM

Enterprise SA Running Reports Created on 2/4/2010 9:13:00 AM Created on 2/4/2010 9:13:00 AM COPYRIGHT & TRADEMARKS Copyright 1998, 2009, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates.

More information

pvs Release Notes All series

pvs Release Notes All series pvs Release Notes All series CA Nimsoft Monitor Copyright Notice This online help system (the "System") is for your informational purposes only and is subject to change or withdrawal by CA at any time.

More information

ehealth Administration Overview Guide

ehealth Administration Overview Guide ehealth Administration Overview Guide MN-EHADMOV-001 October 2006 This documentation (the "Documentation") and related computer software program (the "Software") (hereinafter collectively referred to as

More information

ADM506. Database Administration Oracle II COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s)

ADM506. Database Administration Oracle II COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s) ADM506 Database Administration Oracle II. COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part

More information

CA Cloud Service Delivery Platform

CA Cloud Service Delivery Platform CA Cloud Service Delivery Platform Problem Manager Release 1.1 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Design Architect Student Workbook Mentor Graphics Corporation All rights reserved.

Design Architect Student Workbook Mentor Graphics Corporation All rights reserved. Design Architect Student Workbook 1981-2009 Mentor Graphics Corporation All rights reserved. This document contains information that is proprietary to Mentor Graphics Corporation. The original recipient

More information

Apple Safari Settings Oracle FLEXCUBE Release [May] [2017]

Apple Safari Settings Oracle FLEXCUBE Release [May] [2017] Apple Safari Settings Oracle FLEXCUBE Release 12.4.0.0.0 [May] [2017] Table of Contents 1. CONFIGURING APPLE SAFARI (LATEST QUALIFIED VERSION)... 1-1 1.1 CLEARING CACHE... 1-1 1.2 REMOVING BACK/FORWARD

More information

IBM Storage Driver for OpenStack Version Release Notes

IBM Storage Driver for OpenStack Version Release Notes IBM Storage Driver for OpenStack Version 1.4.1 Release Notes Second Edition (January 2015) This edition applies to version 1.4.1 of the IBM Storage Driver for OpenStack software package. Newer editions

More information

Deltek winsight Deltek winsight Administrator 6.4.1

Deltek winsight Deltek winsight Administrator 6.4.1 Deltek winsight 6.4.1 Deltek winsight Administrator 6.4.1 Release Notes March 20, 2009 13880 Dulles Corner Lane Herndon VA 20171 TEL: 703.734.8606 FAX: 703.734.1146 Release Notes While Deltek has attempted

More information

CA SiteMinder. Advanced Password Services Release Notes SP1

CA SiteMinder. Advanced Password Services Release Notes SP1 CA SiteMinder Advanced Password Services Release Notes 12.52 SP1 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CA IDMS. Logical Record Facility Guide. Release

CA IDMS. Logical Record Facility Guide. Release CA IDMS Logical Record Facility Guide Release 18500 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is

More information

Oracle Database 12c: JMS Sharded Queues

Oracle Database 12c: JMS Sharded Queues Oracle Database 12c: JMS Sharded Queues For high performance, scalable Advanced Queuing ORACLE WHITE PAPER MARCH 2015 Table of Contents Introduction 2 Architecture 3 PERFORMANCE OF AQ-JMS QUEUES 4 PERFORMANCE

More information