Increasing Driver Performance
|
|
|
- Karen Stokes
- 9 years ago
- Views:
Transcription
1 Increasing Driver Performance DataDirect Connect Series ODBC Drivers Introduction One of the advantages of DataDirect Connect Series ODBC drivers (DataDirect Connect for ODBC and DataDirect Connect64 for ODBC) is their flexibility; they can be fine-tuned to enhance performance. The settings that enhance performance may result in reduced functionality, but often the functionality vs. performance trade-off has no impact on the application. The information in the following sections discusses how to tune the DB2, Informix, Informix Wire Protocol, Oracle, Oracle Wire Protocol, and Sybase Wire Protocol drivers for increased performance. Tuning the Drivers The following information explains which driver options you should set in the DataDirect Connect Series ODBC drivers to achieve maximum performance. Condition describes the condition under which your application operates. Action describes which option to set through the ODBC Driver Setup dialog on Windows or which option to set in the system information file (usually.odbc.ini) on UNIX. Description provides an explanation of the option and its affect on performance. Informix (DataDirect Connect for ODBC only) and Informix Wire Protocol Condition: If your application does not use threads On Windows, de-select the Application Using Threads check box on the On UNIX, set ApplicationUsingThreads to 0 (ApplicationUsingThreads=0). Description: The driver coordinates operations from different threads by acquiring locks. Although locking prevents errors in the driver, it also decreases performance. If the application does not make ODBC calls from different threads, there is no reason for the driver to coordinate operations. Disabling the Application Using Threads option prevents the driver from coordinating operations and improves performance for single-threaded applications.
2 Condition: If your application does not issue SQLCancel On Windows, set "Cancel Detect Interval" on the Advanced tab to 0 (None). On UNIX, set CancelDetectInterval to 0 (CancelDetectInterval=0). Description: If your application uses threads, it may also issue synchronous SQLCancel calls. In this case, setting a value for Cancel Detect Interval allows long-running queries to be canceled if the application issues a SQLCancel. The value you select determines how often (in seconds) the driver checks whether a query has been canceled using SQLCancel. If, however, your application does not issue synchronous SQLCancel calls, you can increase driver performance by setting Cancel Detect Interval to 0. In this case, the driver does not incur the overhead of periodically checking for SQLCancel. Oracle Wire Protocol and Oracle Client Condition: If your application does not use threads On Windows, de-select the Application Using Threads check box on the On UNIX, set ApplicationUsingThreads to 0 (ApplicationUsingThreads=0). Description: The driver coordinates operations from different threads by acquiring locks. Although locking prevents errors in the driver, it also decreases performance. If the application does not make ODBC calls from different threads, there is no reason for the driver to coordinate operations. Disabling the Application Using Threads option prevents the driver from coordinating operations and improves performance for single-threaded applications. Condition: If your application retrieves large result set (> bytes) On Windows, set Array Size on the Performance tab to the approximate number of bytes of your largest result set. On UNIX, set ArraySize to the approximate number of bytes of your largest result set. Description: Values for this option can be an integer from 1 to 4,294,967,296 (4GB); the default is The value 1 is a special value that does not define the number of bytes but, instead, causes the driver to allocate space for exactly one row of data. Larger values increase throughput by reducing the number of times the driver fetches data across 2 OF 11 DATADIRECT TECHNOLOGIES M AY 04
3 the network when retrieving multiple rows. Smaller values increase response time, as there is less of a delay waiting for the server to transmit data. Condition: If your application executes multiple concurrent Select statements On Windows, set Cached Cursor Limit on the Performance tab to the number of concurrent open Select statements. On UNIX, set CachedCursorLimit to the number of concurrent open Select statements (CachedCursorLimit=xxxxxx). Description: Each concurrent open Select statement requires one Oracle Cursor Identifier. Performance is improved if this Cursor Identifier can be retrieved from a cache rather than being created for each connection. When this option is enabled and a Select statement is closed, the driver stores the Identifier in its cache rather than closing the Identifier. When an Identifier is needed, the driver takes one from its cache, if one is available, rather than creating a new one. Cached Cursor Identifiers are closed when the connection is closed. The default value is 32. NOTE: This option is available only for the Oracle Wire Protocol driver. Condition: If your application executes the same non-prepared Select statements multiple times On Windows, set Cached Description Limit on the Performance tab to the approximate number of frequently executed non-prepared Select statements executed on a single connection. On UNIX, set CachedDescriptionLimit to the approximate number of frequently executed non-prepared Select statements executed on a single connection (CachedDescriptionLimit=xxxxxx). Description: The driver can cache descriptions of Select statements. If a description is not cached when a non-prepared Select statement is executed, the description must be retrieved from Oracle, which reduces performance. The value of this option corresponds to the number of descriptions that the driver saves for Select statements. These descriptions include the number of columns and the data type, length, and scale for each column. The matching is done by an exact-text match through the From clause. When this option is set to a value other than the default (0), applications that issue a Select statement that returns a few rows repeatedly can realize a significant performance benefit. If the statement contains a Union or a nested Select, the description is not cached. NOTE: This option is available only for the Oracle Wire Protocol driver. DATADIRECT TECHNOLOGIES M AY 04 3 OF 11
4 Condition: If your application does not use Oracle synonyms On Windows, de-select the Catalog Functions Include Synonyms check box on the Performance tab. On UNIX, set CatalogIncludesSynonyms to 0 (CatalogIncludesSynonyms=0). Description: Standard ODBC behavior is to include synonyms in the result sets of calls to the following catalog functions: SQLProcedures, SQLStatistics, and SQLProcedureColumns. Retrieving information about synonyms is very expensive with Oracle. The Catalog Functions Include Synonyms option allows you to improve your application s performance by excluding synonyms from these results sets. If your application does not need synonyms to be returned by these catalog functions, disable this option. Condition: If you application fetches Long data from Long/LOB columns of less than 1 MB On Windows, set "Default Buffer Size for Long/LOB Columns (in Kb)" on the Advanced tab to On UNIX, set DefaultLongDataBuffLen to 1024 (DefaultLongDataBuffLen=1024). Description: This value specifies the size of the buffer used when fetching data from Long/LOB columns. The buffer size should only be large enough to accommodate the maximum amount of data that you want to retrieve from these types of columns; otherwise, performance is reduced by transferring large amounts of data into an oversized buffer. You will need to increase the value of this option from the default of 1024 if the total size of any Long data exceeds 1 MB. The value must be in multiples of 1024 (for example, 2048). NOTE: In the Oracle (non-wire Protocol) driver, this option is not used if the Optimize Long Performance option is enabled. Condition: If your application does not require result set information at prepare time. On Windows, de-select the Describe At Prepare check box on the On UNIX, set DescribeAtPrepare to 0 (DescribeAtPrepare=0). Description: When enabled, this option causes two round trips across the network one for prepare and one for describe. If your application does not 4 OF 11 DATADIRECT TECHNOLOGIES M AY 04
5 require result set information at prepare time (for instance, you request information about the result set using SQLColAttribute(s), SQLDescribeCol, SQLNumResultCols, etc. before calling SQLExecute on a prepared statement), you can increase performance by disabling this option. Condition: If your application does not need to support Long columns when using a static cursor On Windows, de-select the Enable Static Cursors for Long Data check box on the Performance tab. On UNIX, set EnableStaticCursorsForLong to 0 (EnableStaticCursorsForLongData=0). Description: This option enables the driver to support Long columns when using a static cursor, but also reduces performance. If your application does not need to support Long columns and does not use static cursors, performance is increased by disabling this option. Condition: If your application fetches Long data On Windows, select the Optimize Long Performance check box on the Performance tab. On UNIX, set OptimizeLongPerformance to 1 (OptimizeLongPerformance=1). Description: When enabled, this option fetches Long data directly into the application s buffers rather than allocating buffers and making a copy. Also, when enabled, this option decreases fetch times on Long data; however, it can cause the application to be limited to one active statement per connection. NOTE: This option is available only with the Oracle (non-wire Protocol) driver. If this option is enabled, the Default Buffer Size for Long/LOB Columns option is not used. Condition: If your application does not need to return result sets from stored procedures through Ref Cursors On Windows, de-select the Procedure Returns Results check box on the On UNIX, set ProcedureRetResults to 0 (ProcedureRetResults=0). Description: When Procedure Returns Results is enabled, the driver returns result sets from stored procedures/functions. In addition, SQLGetInfo(SQL_MULT_RESULTS_SETS) will return "Y" and DATADIRECT TECHNOLOGIES M AY 04 5 OF 11
6 SQLGetInfo(SQL_BATCH_SUPPORT) will return SQL_BS_SELECT_PROC. If this option is enabled and you execute a stored procedure that does not return result sets, you will incur a performance penalty. Condition: If any of the following apply: you have a batch environment with a low number of users your Oracle DBMS is running on a Windows server your Oracle server has excess processing capacity and memory available when at maximum load you have an application that requires maximum performance at the expense of using more Oracle server resources On Windows, select Dedicated from the Server Process Type drop-down list on the On UNIX, set ServerType to 2 (ServerType=2). Description: When using a dedicated server connection, a server process on UNIX (a thread on Windows) is created to serve only your application connection. When you disconnect, the process goes away. The socket connection is made directly between your application and this dedicated server process. This can provide tremendous performance improvements, but will use significantly more resources on UNIX servers. Because this is a thread on Oracle servers running on Windows platforms, the additional resource usage on the server is significantly less. Use this option when you have a batch environment with lower numbers of connections or if you have a performance-sensitive application that would be degraded by sharing Oracle resources with other applications. NOTE: This option is available only for the Oracle Wire Protocol driver. IMPORTANT: The server must be configured for shared connections (the SHARED_SERVERS initialization parameter on the server has a value greater than 0) for the driver to be able to specify the shared server process type. Condition: If you are the only user requiring a call to SQLProcedures On Windows, select the Use Current Schema for SQLProcedures check box on the Performance tab. On UNIX, set UseCurrentSchema to 1 (UseCurrentSchema=1). Description: When enabled, this option specifies that the driver return only procedures owned by the current user when executing SQLProcedures. Also, when this option is enabled, the call for SQLProcedures is optimized by 6 OF 11 DATADIRECT TECHNOLOGIES M AY 04
7 grouping queries, but only procedures owned by the current user are returned. Enabling this option is equivalent to passing the Login ID used on the connection as the SchemaName argument to the SQLProcedures call. Sybase Wire Protocol Condition: If your application does not use threads On Windows, de-select the Application Using Threads check box on the On UNIX, set ApplicationUsingThreads to 0 (ApplicationUsingThreads=0). Description: The driver coordinates operations from different threads by acquiring locks. Although locking prevents errors in the driver, it also decreases performance. If the application does not make ODBC calls from different threads, there is no reason for the driver to coordinate operations. Disabling the Application Using Threads option prevents the driver from coordinating operations and improves performance for single-threaded applications. Condition: If your application fetches large result sets (> 50 rows) On Windows, set Fetch Array Size on the Performance tab to a larger number of rows than the default value of 50. On UNIX, set ArraySize to a larger number or rows than the default value of 50 (ArraySize=xx). Description: If the Select Method connection option is set to 0 and your application fetches more than 50 rows at a time, you should set Fetch Array Size to the approximate number of rows being fetched. This reduces the number of round trips on the network, thereby increasing performance. For example, if your application normally fetches 200 rows, it is more efficient for the driver to fetch 200 rows at one time over the network than to fetch 50 rows at a time during four round trips over the network. You should use "Fetch Array Size" in conjunction with Select Method." NOTE: The ideal setting for your application will vary. To calculate the ideal setting for this option, you must know the size in bytes of the rows that you are fetching and the size in bytes of your Network Packet. Then, you must calculate the number of rows that will fit in your Network Packet, leaving space for packet overhead. For example, suppose your Network Packet size is 1024 bytes and the row size is 8 bytes. Dividing 1024 by 8 equals 128; however, the ideal setting for Fetch Array Size is 127 not 128 because the number of rows times the row size must be slightly smaller than the Network Packet size. DATADIRECT TECHNOLOGIES M AY 04 7 OF 11
8 Condition: If your application fetches Long data from a very large TEXT or IMAGE column, but your application displays less than 1 MB of data On Windows, set "Default Buffer Size for Long Columns (in Kb)" on the Advanced tab to On UNIX, set DefaultLongDataBuffLen to 1024 (DefaultLongDataBuffLen=1024). Description: TEXT and IMAGE columns can contain very large amounts of data, however, your application may display only a limited amount of data. The buffer size should only be large enough to accommodate the maximum amount of data that you want to retrieve; otherwise, performance is reduced by transferring large amounts of data into an oversized buffer. If your application retrieves more than 1 MB of data, the buffer size should be increased accordingly. Condition: If your Sybase server is set up with a packet size other than the default of 512 bytes On Windows, set Packet Size on the Performance tab to the number of 512-byte blocks equal to the Network Packet Size setting on your Sybase ASE Server. For example, Packet Size = 6 is equivalent to 6 * 512 = 3072 bytes. On UNIX, set PacketSize to the number of 512-byte blocks equal to the Network Packet Size setting on your Sybase ASE Server. For example, Packet Size = 6 is equivalent to 6 * 512 = 3072 bytes (PacketSize=x). Description: It is normally optimal for the client to use the maximum packet size that the server will allow. This reduces the total number of round trips required to return data to the client, thus improving performance. To take advantage of this connection attribute, you must configure the Sybase server for a maximum network packet size greater than or equal to the value you specified for PacketSize. For example: sp_configure "max network packet size", 5120 reconfigure Restart Sybase Server Condition: If your application does not execute prepared statements multiple times On Windows, set Prepare Method on the Performance tab to 2. On UNIX, set OptimizePrepare to 2 (OptimizePrepare=2). 8 OF 11 DATADIRECT TECHNOLOGIES M AY 04
9 Description: If "Prepare Method" is set to 1 and your application issues calls to SQLPrepare that contain parameter markers, or if Prepare Method is set to 0, then the driver creates a stored procedure on the server at prepare time. If your application executes one of these prepared statements multiple times, performance will increase because the driver created a stored procedure on the server. This is because executing a stored procedure is faster than executing a single SQL statement; however, if a prepared statement is only executed once or is never executed, performance can decrease. This is because creating a stored procedure incurs more overhead on the server than simply executing a single SQL statement. When Prepare Method is set to 2, the driver never creates stored procedures for prepared statement. A setting of 2 should be used if your application does not execute prepared statements multiple times. Condition: If your application does not use multiple active statements per connection (for example, fetching more than one result set at a time) On Windows, set Select Method on the Performance tab to 1. On UNIX, set SelectMethod to 1 (SelectMethod=1). Description: The default setting (0) of this option causes the driver to use database cursors for Select statements and allows an application to process multiple active statements per connection. An active statement is defined as a statement where all the result rows or result sets have not been fetched. This can cause high overhead on the server. If your application does not use multiple active statements, however, setting "Select Method" to 1 will increase performance of Select statements by allowing the server to return results without using a database cursor. If this option is set to 0, it should be used in conjunction with "Fetch Array Size." If this option is set to 1, Fetch Array Size has no effect. DB2 Wire Protocol Condition: If your application does not use threads On Windows, de-select the Application Using Threads check box on the On UNIX, set ApplicationUsingThreads to 0 (ApplicationUsingThreads=0). Description: The driver coordinates operations from different threads by acquiring locks. Although locking prevents errors in the driver, it also decreases performance. If the application does not make ODBC calls from different threads, there is no reason for the driver to coordinate operations. Disabling the Application Using Threads option prevents the driver from DATADIRECT TECHNOLOGIES M AY 04 9 OF 11
10 coordinating operations and improves performance for single-threaded applications. Condition: If your application makes unqualified catalog function calls On Windows, select the Use Current Schema for Catalog Functions check box on the On UNIX, set UseCurrentSchema to 1 (UseCurrentSchema=1). Description: This option speeds up applications that make unqualified catalog function calls over which the end user has no control. For example, applications such as Microsoft Access always pass "no schema" to a call to SQLTables. Setting this option can cause a dramatic improvement in speed when retrieving a table list because, normally, far fewer tables are returned. We welcome your feedback! Please send any comments concerning documentation, including suggestions for other topics that you would like to see, to: [email protected] 10 OF 11 DATADIRECT TECHNOLOGIES M AY 04
11 FOR MORE INFORMATION Worldwide Sales Belgium (French) Belgium (Dutch) France Germany Japan Netherlands United Kingdom United States DataDirect Technologies is focused on data access, enabling software developers at both packaged software vendors and in corporate IT departments to create better applications faster. DataDirect Technologies offers the most comprehensive, proven line of data connectivity components available anywhere. Developers worldwide depend on DataDirect Technologies to connect their applications to an unparalleled range of data sources using standards-based interfaces such as ODBC, JDBC and ADO.NET, as well as cutting-edge XML query technologies. More than 250 leading independent software vendors and thousands of enterprises rely on DataDirect Technologies to simplify and streamline data connectivity. DataDirect Technologies is an operating company of Progress Software Corporation (Nasdaq: PRGS). Copyright 2004 DataDirect Technologies Corp. All rights reserved. DataDirect Connect is a registered trademark of DataDirect Technologies Corp. in the United States and other countries. Java and all Java based trademarks and logos are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other countries. Other company or product names mentioned herein may be trademarks or registered trademarks of their respective companies. DATADIRECT TECHNOLOGIES M AY OF 11
Failover Support. DataDirect Connect for ODBC Drivers. Introduction. Connection Failover
Failover Support DataDirect Connect for ODBC Drivers Introduction Connection failover and connection retry are two useful features that are available in the following DataDirect Connect for ODBC drivers:
Using Oracle Real Application Clusters (RAC)
Using Oracle Real Application Clusters (RAC) DataDirect Connect for ODBC Introduction In today's e-business on-demand environment, more companies are turning to a Grid computing infrastructure for distributed
Using DataDirect Connect for JDBC with Oracle Real Application Clusters (RAC)
Using DataDirect Connect for JDBC with Oracle Real Application Clusters (RAC) Introduction In today's e-business on-demand environment, more companies are turning to a Grid computing infrastructure for
Using the DataDirect Connect for JDBC Drivers with the Sun Java System Application Server
Using the DataDirect Connect for JDBC Drivers with the Sun Java System Application Server Introduction This document explains the steps required to use the DataDirect Connect for JDBC drivers with the
Using the DataDirect Connect for JDBC Drivers with WebLogic 8.1
Using the DataDirect Connect for JDBC Drivers with WebLogic 8.1 Introduction This document explains the steps required to use the DataDirect Connect for JDBC drivers with the WebLogic Application Server
Windows Authentication on Microsoft SQL Server
Windows Authentication on Microsoft SQL Server Introduction Microsoft SQL Server offers two types of security authentication: SQL Server authentication and Windows authentication. SQL Server authentication
Using the DataDirect Connect for JDBC Drivers with Tomcat
Using the DataDirect Connect for JDBC Drivers with Tomcat Introduction This document explains the steps required to use the DataDirect Connect for JDBC drivers with the Tomcat JSP/Servlet engine 1. These
Why developers should use ODBC instead of native proprietary database interfaces
P RODUCT O VERVIEW Why developers should use ODBC instead of native proprietary database interfaces The financial and technical basis for using ODBC with wire protocol drivers instead of native database
SequeLink Server for ODBC Socket
P RODUCT O VERVIEW Server for ODBC Socket Overview DataDirect is highly scalable, server-based middleware that gives you a complete platform for data connectivity. Common Servers offer the performance
Achieving Database Interoperability Across Data Access APIs through SQL Up-leveling
Achieving Database Interoperability Across Data Access APIs through SQL Up-leveling SQL up-leveling provides the capability to write a SQL statement that can be executed across multiple databases, regardless
Accessing Oracle 11g from SAS on Linux Using DataDirect Connect for ODBC
Accessing Oracle 11g from SAS on Linux Using DataDirect Connect for ODBC This article explains how quick and easy it is to connect to an Oracle 11g server from SAS running on a Linux client using the DataDirect
Integrated Authentication
Integrated Authentication Information Security Introduction Information security has become an increasingly visible and important topic to companies. Driven by a number of highly publicized security breaches
SOLUTION BRIEF. JUST THE FAQs: Moving Big Data with Bulk Load. www.datadirect.com
SOLUTION BRIEF JUST THE FAQs: Moving Big Data with Bulk Load 2 INTRODUCTION As the data and information used by businesses grow exponentially, IT organizations face a daunting challenge moving what is
SOLUTION BRIEF. Advanced ODBC and JDBC Access to Salesforce Data. www.datadirect.com
SOLUTION BRIEF Advanced ODBC and JDBC Access to Salesforce Data 2 CLOUD DATA ACCESS In the terrestrial world of enterprise computing, organizations depend on advanced JDBC and ODBC technologies to provide
PROGRESS DATADIRECT QA AND PERFORMANCE TESTING EXTENSIVE TESTING ENSURES DATA CONNECTIVITY THAT WORKS
Progress DataDirect Connect DATA SHEET PROGRESS DATADIRECT QA AND PERFORMANCE TESTING EXTENSIVE TESTING ENSURES DATA CONNECTIVITY THAT WORKS Progress DataDirect ODBC, JDBC and ADO.NET data connectivity
Micro Focus Database Connectors
data sheet Database Connectors Executive Overview Database Connectors are designed to bridge the worlds of COBOL and Structured Query Language (SQL). There are three Database Connector interfaces: Database
> ACCESSING SQL SERVER FROM IBM COGNOS BI SERVER. www.progress.com/datadirect
T U T O R I A L > ACCESSING SQL SERVER FROM IBM COGNOS BI SERVER TABLE OF CONTENTS Configure ODBC Data Source to SQL Server Reporting Database... 2 Restart the IBM Cognos 8 Service from the IBM Cognos
ODBC Applications: Writing Good Code
05_0137143931_ch05.qxd 2/17/09 2:04 PM Page 123 CHAPTER FIVE ODBC Applications: Writing Good Code D eveloping performance-optimized ODBC applications is not easy. Microsoft s ODBC Programmer s Reference
BUSINESS INTELLIGENCE ANALYTICS
SOLUTION BRIEF > > CONNECTIVITY BUSINESS SOLUTIONS FOR INTELLIGENCE FINANCIAL SERVICES ANALYTICS 1 INTRODUCTION It s no secret that the banking and financial services institutions of today are driven by
SAP Business Objects Business Intelligence platform Document Version: 4.1 Support Package 7 2015-11-24. Data Federation Administration Tool Guide
SAP Business Objects Business Intelligence platform Document Version: 4.1 Support Package 7 2015-11-24 Data Federation Administration Tool Guide Content 1 What's new in the.... 5 2 Introduction to administration
Performance and Tuning Guide. SAP Sybase IQ 16.0
Performance and Tuning Guide SAP Sybase IQ 16.0 DOCUMENT ID: DC00169-01-1600-01 LAST REVISED: February 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication pertains to Sybase software
Oracle Essbase Integration Services. Readme. Release 9.3.3.0.00
Oracle Essbase Integration Services Release 9.3.3.0.00 Readme To view the most recent version of this Readme, see the 9.3.x documentation library on Oracle Technology Network (OTN) at http://www.oracle.com/technology/documentation/epm.html.
Data Access Guide. BusinessObjects 11. Windows and UNIX
Data Access Guide BusinessObjects 11 Windows and UNIX 1 Copyright Trademarks Use restrictions Patents Copyright 2004 Business Objects. All rights reserved. If you find any problems with this documentation,
Enterprise Performance Tuning: Best Practices with SQL Server 2008 Analysis Services. By Ajay Goyal Consultant Scalability Experts, Inc.
Enterprise Performance Tuning: Best Practices with SQL Server 2008 Analysis Services By Ajay Goyal Consultant Scalability Experts, Inc. June 2009 Recommendations presented in this document should be thoroughly
VirtualCenter Database Performance for Microsoft SQL Server 2005 VirtualCenter 2.5
Performance Study VirtualCenter Database Performance for Microsoft SQL Server 2005 VirtualCenter 2.5 VMware VirtualCenter uses a database to store metadata on the state of a VMware Infrastructure environment.
The release notes provide details of enhancements and features in Cloudera ODBC Driver for Impala 2.5.30, as well as the version history.
Cloudera ODBC Driver for Impala 2.5.30 The release notes provide details of enhancements and features in Cloudera ODBC Driver for Impala 2.5.30, as well as the version history. The following are highlights
PaperClip32. Installation Guide. for Workgroup and Enterprise Editions. Document Revision 2.1 1
PaperClip32 Installation Guide for Workgroup and Enterprise Editions Document Revision 2.1 1 Copyright Information Copyright 2005, PaperClip Software, Inc. The PaperClip32 product name and PaperClip Logo
HYPERION SYSTEM 9 N-TIER INSTALLATION GUIDE MASTER DATA MANAGEMENT RELEASE 9.2
HYPERION SYSTEM 9 MASTER DATA MANAGEMENT RELEASE 9.2 N-TIER INSTALLATION GUIDE P/N: DM90192000 Copyright 2005-2006 Hyperion Solutions Corporation. All rights reserved. Hyperion, the Hyperion logo, and
Embarcadero DB Change Manager 6.0 and DB Change Manager XE2
Product Documentation Embarcadero DB Change Manager 6.0 and DB Change Manager XE2 User Guide Versions 6.0, XE2 Last Revised April 15, 2011 2011 Embarcadero Technologies, Inc. Embarcadero, the Embarcadero
Database FAQs - SQL Server
Database FAQs - SQL Server Kony Platform Release 5.0 Copyright 2013 by Kony, Inc. All rights reserved. August, 2013 This document contains information proprietary to Kony, Inc., is bound by the Kony license
Performance Tuning for the JDBC TM API
Performance Tuning for the JDBC TM API What Works, What Doesn't, and Why. Mark Chamness Sr. Java Engineer Cacheware Beginning Overall Presentation Goal Illustrate techniques for optimizing JDBC API-based
CA IDMS Server r17. Product Overview. Business Value. Delivery Approach
PRODUCT sheet: CA IDMS SERVER r17 CA IDMS Server r17 CA IDMS Server helps enable secure, open access to CA IDMS mainframe data and applications from the Web, Web services, PCs and other distributed platforms.
Optimizing Performance. Training Division New Delhi
Optimizing Performance Training Division New Delhi Performance tuning : Goals Minimize the response time for each query Maximize the throughput of the entire database server by minimizing network traffic,
Trusted RUBIX TM. Version 6. ODBC Guide. Revision 7 RELATIONAL DATABASE MANAGEMENT SYSTEM TEL +1-202-412-0152. Infosystems Technology, Inc.
Trusted RUBIX TM Version 6 ODBC Guide Revision 7 RELATIONAL DATABASE MANAGEMENT SYSTEM Infosystems Technology, Inc. 4 Professional Dr - Suite 118 Gaithersburg, MD 20879 TEL +1-202-412-0152 1981, 2014 Infosystems
ODBC Driver for Omnis Data Files. TigerLogic Corporation
ODBC Driver for Omnis Data Files TigerLogic Corporation September 2009 The software this document describes is furnished under a license agreement. The software may be used or copied only in accordance
An Oracle White Paper December 2013. Advanced Network Compression
An Oracle White Paper December 2013 Advanced Network Compression Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and may not
Crystal Reports XI. Overview. Contents. Understanding the CRConfig.xml File
Understanding the Config.xml File Overview This document provides information about the Config.xml configuration file that is shipped with Crystal Reports XI. In particular, this document discusses the
IBM Lotus Enterprise Integrator (LEI) for Domino. Version 8.5.2. August 17, 2010
IBM Lotus Enterprise Integrator (LEI) for Domino Version 8.5.2 August 17, 2010 A) What's new in LEI V8.5.2 B) System requirements C) Installation considerations D) Operational considerations E) What's
CA Nimsoft Monitor. Probe Guide for NT Event Log Monitor. ntevl v3.8 series
CA Nimsoft Monitor Probe Guide for NT Event Log Monitor ntevl v3.8 series Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and
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
"SQL Database Professional " module PRINTED MANUAL
"SQL Database Professional " module PRINTED MANUAL "SQL Database Professional " module All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or
High-Performance Oracle: Proven Methods for Achieving Optimum Performance and Availability
About the Author Geoff Ingram (mailto:[email protected]) is a UK-based ex-oracle product developer who has worked as an independent Oracle consultant since leaving Oracle Corporation in the mid-nineties.
Job Reference Guide. SLAMD Distributed Load Generation Engine. Version 1.8.2
Job Reference Guide SLAMD Distributed Load Generation Engine Version 1.8.2 June 2004 Contents 1. Introduction...3 2. The Utility Jobs...4 3. The LDAP Search Jobs...11 4. The LDAP Authentication Jobs...22
FileMaker 11. ODBC and JDBC Guide
FileMaker 11 ODBC and JDBC Guide 2004 2010 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc. registered
Optimizing Your Database Performance the Easy Way
Optimizing Your Database Performance the Easy Way by Diane Beeler, Consulting Product Marketing Manager, BMC Software and Igy Rodriguez, Technical Product Manager, BMC Software Customers and managers of
Architecting the Future of Big Data
Hive ODBC Driver User Guide Revised: July 22, 2013 2012-2013 Hortonworks Inc. All Rights Reserved. Parts of this Program and Documentation include proprietary software and content that is copyrighted and
Quick Start SAP Sybase IQ 16.0
Quick Start SAP Sybase IQ 16.0 UNIX/Linux DOCUMENT ID: DC01687-01-1600-01 LAST REVISED: February 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication pertains to Sybase software and
ODBC Chapter,First Edition
1 CHAPTER 1 ODBC Chapter,First Edition Introduction 1 Overview of ODBC 2 SAS/ACCESS LIBNAME Statement 3 Data Set Options: ODBC Specifics 15 DBLOAD Procedure: ODBC Specifics 25 DBLOAD Procedure Statements
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
Architecting the Future of Big Data
Hive ODBC Driver User Guide Revised: October 1, 2012 2012 Hortonworks Inc. All Rights Reserved. Parts of this Program and Documentation include proprietary software and content that is copyrighted and
Architecting the Future of Big Data
Hive ODBC Driver User Guide Revised: July 22, 2014 2012-2014 Hortonworks Inc. All Rights Reserved. Parts of this Program and Documentation include proprietary software and content that is copyrighted and
Plug-In for Informatica Guide
HP Vertica Analytic Database Software Version: 7.0.x Document Release Date: 2/20/2015 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements
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
About This Service Fix... 1 New Features... 1 Defects Fixed... 1 Known Issues in Release 11.1.1.3... 3 Documentation Updates... 6
Oracle Essbase Integration Services Release 11.1.1.3 Readme [Skip Navigation Links] About This Service Fix... 1 New Features... 1 Defects Fixed... 1 Known Issues in Release 11.1.1.3... 3 Documentation
SAP Sybase SQL Anywhere New Features Improve Performance, Increase Security, and Ensure 24/7 Availability
SAP Sybase SQL Anywhere New Features Improve Performance, Increase, and Ensure 24/7 Availability This SAP paper summarizes the key business benefits and new functionality of release 16.0 of SAP Sybase
PowerSchool Student Information System
Oracle ODBC Configuration and Client Installation Guide PowerSchool Student Information System Released July 9, 2008 Document Owner: Documentation Services This edition applies to Release 5.2 of the PowerSchool
Advantage Database Server
whitepaper Advantage Database Server Scalability Technical Brief A whitepaper from Sybase ianywhere TABLE OF CONTENTS 1 Introduction 2 Specifications 2 Tables 2 Server Machine 2 Client Machine 2 Development
Realtime SQL Database System
BAPAS -DB Realtime SQL Database System - ODBC-Driver for ODBC 3.0 - - English - Release 1.8 Reg. No. 3.4.7.16.1 Date: 2008-01-02 BAPAS-DB Realtime SQL Database System - ODBC-Driver for ODBC 3.0 - Release
HR Data Retrieval in a LDAP- Enabled Directory Service
HR Data Retrieval in a LDAP- Enabled Directory Service HELP.PORTMANAGER Release 50A Copyright Copyright 2001 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in
Can I customize my identity management deployment without extensive coding and services?
SOLUTION BRIEF CONNECTOR XPRESS AND POLICY XPRESS UTILITIES IN CA IDENTITY MANAGER Can I customize my identity management deployment without extensive coding and services? SOLUTION BRIEF CA DATABASE MANAGEMENT
Performance and scalability of a large OLTP workload
Performance and scalability of a large OLTP workload ii Performance and scalability of a large OLTP workload Contents Performance and scalability of a large OLTP workload with DB2 9 for System z on Linux..............
Cloudera ODBC Driver for Impala Version 2.5.15
Cloudera ODBC Driver for Impala Version 2.5.15 Important Notice 2010-2013 Cloudera, Inc. All rights reserved. Cloudera, the Cloudera logo, Cloudera Impala, Impala, and any other product or service names
SpatialWare. Version 4.9.2 for Microsoft SQL Server 2008 INSTALLATION GUIDE
SpatialWare Version 4.9.2 for Microsoft SQL Server 2008 INSTALLATION GUIDE Information in this document is subject to change without notice and does not represent a commitment on the part of the vendor
Using the Caché SQL Gateway
Using the Caché SQL Gateway Version 2007.1 04 June 2007 InterSystems Corporation 1 Memorial Drive Cambridge MA 02142 www.intersystems.com Using the Caché SQL Gateway Caché Version 2007.1 04 June 2007 Copyright
INFORMIX - Data Director for Visual Basic. Version 3.5
INFORMIX - Data Director for Visual Basic Version 3.5 Installing and Configuring Data Director This document explains how to install INFORMIX-Data Director for Visual Basic, Version 3.5, in your Microsoft
Performance Best Practices Guide for SAP NetWeaver Portal 7.3
SAP NetWeaver Best Practices Guide Performance Best Practices Guide for SAP NetWeaver Portal 7.3 Applicable Releases: SAP NetWeaver 7.3 Document Version 1.0 June 2012 Copyright 2012 SAP AG. All rights
ICOM 6005 Database Management Systems Design. Dr. Manuel Rodríguez Martínez Electrical and Computer Engineering Department Lecture 2 August 23, 2001
ICOM 6005 Database Management Systems Design Dr. Manuel Rodríguez Martínez Electrical and Computer Engineering Department Lecture 2 August 23, 2001 Readings Read Chapter 1 of text book ICOM 6005 Dr. Manuel
1 Changes in this release
Oracle SQL Developer Oracle TimesTen In-Memory Database Support Release Notes Release 4.0 E39883-01 June 2013 This document provides late-breaking information as well as information that is not yet part
v4.8 Getting Started Guide: Using SpatialWare with MapInfo Professional for Microsoft SQL Server
v4.8 Getting Started Guide: Using SpatialWare with MapInfo Professional for Microsoft SQL Server Information in this document is subject to change without notice and does not represent a commitment on
Embarcadero DB Change Manager
Product Documentation Embarcadero DB Change Manager Quick Start Guide Version 6.3.1/XE5 Published May, 2014 2014 Embarcadero Technologies, Inc. Embarcadero, the Embarcadero Technologies logos, and all
DataLogger. 2015 Kepware, Inc.
2015 Kepware, Inc. 2 DataLogger Table of Contents Table of Contents 2 DataLogger Help 4 Overview 4 Initial Setup Considerations 5 System Requirements 5 External Dependencies 5 SQL Authentication 6 Windows
ODBC Client Driver Help. 2015 Kepware, Inc.
2015 Kepware, Inc. 2 Table of Contents Table of Contents 2 4 Overview 4 External Dependencies 4 Driver Setup 5 Data Source Settings 5 Data Source Setup 6 Data Source Access Methods 13 Fixed Table 14 Table
DBX. SQL database extension for Splunk. Siegfried Puchbauer
DBX SQL database extension for Splunk Siegfried Puchbauer Agenda Features Architecture Supported platforms Supported databases Roadmap Features Database connection management SQL database input (content
Introduction. AppDynamics for Databases Version 2.9.4. Page 1
Introduction AppDynamics for Databases Version 2.9.4 Page 1 Introduction to AppDynamics for Databases.................................... 3 Top Five Features of a Database Monitoring Tool.............................
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
TaskCentre v4.5 Run Crystal Report Tool White Paper
TaskCentre v4.5 Run Crystal Report Tool White Paper Document Number: PD500-03-13-1_0-WP Orbis Software Limited 2010 Table of Contents COPYRIGHT 1 TRADEMARKS 1 INTRODUCTION 2 Overview 2 Features 2 TECHNICAL
FileMaker 12. ODBC and JDBC Guide
FileMaker 12 ODBC and JDBC Guide 2004 2012 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks of FileMaker, Inc.
Virtuoso and Database Scalability
Virtuoso and Database Scalability By Orri Erling Table of Contents Abstract Metrics Results Transaction Throughput Initializing 40 warehouses Serial Read Test Conditions Analysis Working Set Effect of
OpenLink ODBC Driver (Express Edition) User Guide
OpenLink Software, 2015 Table of Contents 1 OpenLink ODBC Driver (Express Edition) Documentation...1 1.1 Overview...1 1.1.1 Driver Architecture...1 1.1.2 System Requirements...1 1.1.2.1 Software Requirements...1
Using Database Performance Warehouse to Monitor Microsoft SQL Server Report Content
Using Database Performance Warehouse to Monitor Microsoft SQL Server Report Content Applies to: Enhancement Package 1 for SAP Solution Manager 7.0 (SP18) and Microsoft SQL Server databases. SAP Solution
Benchmarks of SQL Query Performance for ODBC and Oracle Call Interface
Another Technology Report From Ken North Computing, LLC Benchmarks of SQL Query Performance for ODBC and Oracle Call Interface October 2002 Prepared by Ken North [email protected] Copyright 2002,
3 Setting up Databases on a Microsoft SQL 7.0 Server
3 Setting up Databases on a Microsoft SQL 7.0 Server Overview of the Installation Process To set up GoldMine properly, you must follow a sequence of steps to install GoldMine s program files, and the other
can I customize my identity management deployment without extensive coding and services?
SOLUTION BRIEF Connector Xpress and Policy Xpress Utilities in CA IdentityMinder can I customize my identity management deployment without extensive coding and services? agility made possible You can.
How To Use The Correlog With The Cpl Powerpoint Powerpoint Cpl.Org Powerpoint.Org (Powerpoint) Powerpoint (Powerplst) And Powerpoint 2 (Powerstation) (Powerpoints) (Operations
orrelog SQL Table Monitor Adapter Users Manual http://www.correlog.com mailto:[email protected] CorreLog, SQL Table Monitor Users Manual Copyright 2008-2015, CorreLog, Inc. All rights reserved. No part
Security Audit Log (BC-SEC)
HELP.BCSECAUDLOG Release 4.6C SAP AG Copyright Copyright 2001 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express
Legal Notices... 2. Introduction... 3
HP Asset Manager Asset Manager 5.10 Sizing Guide Using the Oracle Database Server, or IBM DB2 Database Server, or Microsoft SQL Server Legal Notices... 2 Introduction... 3 Asset Manager Architecture...
SQL Anywhere 12 New Features Summary
SQL Anywhere 12 WHITE PAPER www.sybase.com/sqlanywhere Contents: Introduction... 2 Out of Box Performance... 3 Automatic Tuning of Server Threads... 3 Column Statistics Management... 3 Improved Remote
Payments HELP.PYINT. Release 4.6C
HELP.PYINT Release 4.6C SAP AG Copyright Copyright 2001 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission
Rebasoft Auditor Quick Start Guide
Copyright Rebasoft Limited: 2009-2011 1 Release 2.1, Rev. 1 Copyright Notice Copyright 2009-2011 Rebasoft Ltd. All rights reserved. REBASOFT Software, the Rebasoft logo, Rebasoft Auditor are registered
Reporting for Contact Center Setup and Operations Guide. BCM Contact Center
Reporting for Contact Center Setup and Operations Guide BCM Contact Center Document Number: NN40040-302 Document Status: Standard Document Version: 04.00 Part Code: N0060637 Date: June 2006 Copyright 2005
ABAP SQL Monitor Implementation Guide and Best Practices
ABAP SQL Monitor Implementation Guide and Best Practices TABLE OF CONTENTS ABAP SQL Monitor - What is it and why do I need it?... 3 When is it available and what are the technical requirements?... 5 In
NetFlow Collection and Processing Cartridge Pack User Guide Release 6.0
[1]Oracle Communications Offline Mediation Controller NetFlow Collection and Processing Cartridge Pack User Guide Release 6.0 E39478-01 June 2015 Oracle Communications Offline Mediation Controller NetFlow
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
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.
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...
Migrating Non-Oracle Databases and their Applications to Oracle Database 12c O R A C L E W H I T E P A P E R D E C E M B E R 2 0 1 4
Migrating Non-Oracle Databases and their Applications to Oracle Database 12c O R A C L E W H I T E P A P E R D E C E M B E R 2 0 1 4 1. Introduction Oracle provides products that reduce the time, risk,
CA ARCserve Backup for Windows
CA ARCserve Backup for Windows Agent for Sybase Guide r16 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation
