FastObjects.NET Migration Guide. Release 12.0

Size: px
Start display at page:

Download "FastObjects.NET Migration Guide. Release 12.0"

Transcription

1 Release 12.0

2 : Release 12.0 FastObjects Release 12.0 Copyright Versant Software LLC and Copyright Actian Corporation. All rights reserved. The software described in this document is subject to change without notice. This document does not represent a commitment on the part of Versant or Actian. The software is furnished under a license agreement or nondisclosure agreement and may be used or copied only in accordance with the terms of the agreement. No part of this manual may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying and recording, or for any purpose without the express written permission of Actian. Versant, Versant Object Database and FastObjects are either registered trademarks or trademarks of Versant Software LLC in the United States and/or other countries. Java and all Java-based marks are trademarks or registered trademarks of Oracle Corporation in the United States and other countries. Eclipse and Built on Eclipse are trademarks of Eclipse Foundation, Inc. Microsoft, Windows, Visual C#, Visual Basic, Visual J#, and ActiveX are either registered trademarks or trademarks of Microsoft Corporation in the United States and/or other countries. All other products are a registered trademark or trademark of their respective company in the United States and/or other countries V9-6

3 Table of Contents Contact Information for Actian... v About this Guide... vii 1. What's New in FastObjects FastObjects Application and Server 64-bit support FastObjects Server Scalability Enhancement FastObjects Server Performance optimization for.net (and Java) applications FastObjects Server Unlimited parallel connections Server usability Operation Monitoring Client-side scalability optimization Recovery file improvements Improved performance for queries using the index cache Improved performance for reindex, reorg and check Windows Native Authentication Bit support for Solaris Transactional removal of deleted indexes during update New Features in FastObjects 12 since FastObjects Bit Support for Linux Configuration of the System File Cache Size Performance improvement for reading objects greater than 1024 bytes Improved, configurable progress information during long queries Query debug output can be configured during runtime All FastObjects runtime DLLs now have a predefined base address Additional behavior for incremental sequences Faster query execution for complex queries Better performance when extracting embedded class sets or basic type sets Memory optimization for better performance Performance optimization in C/S communication Improved memory allocation for very large query results Better query estimation for conditions on indexed members Large transaction performance optimization FastObjects Connect Cascading Delete Compatibility Issues Supported Platforms Supported Visual Studio.NET Frameworks Supported.NET Languages API and Database Compatibility Client/Server Compatibility New default for maximum file size iii

4 3.7. FastObjects Storage Clustering enabled by default Best scalability enabled for FastObjects Server by default FastObjects Connect FastObjects Encryption iv

5 Contact Information for Actian You can obtain the latest information about Actian products by contacting either of our main office locations, visiting our web sites, or sending us an . Actian Office Locations Actian Corporation is headquartered in Redwood City, California. Versant GmbH is responsible for European operations and has headquarters in Hamburg, Germany. Actian Corporate Headquarters 500 Arguello Street, Suite 200 Redwood City, CA USA [TEL] [FAX] Versant GmbH Halenreie 42 D Hamburg Germany +49 (0) [TEL] +49 (0) [FAX] Actian Web Site For the latest corporate and product news, visit the Actian web site at Actian Versant Products For inquiries about Versant products and services, contact: info@versant.com For help in using Versant products, contact Technical Support at: versant_support@actian.com The Actian Customer Portal provides all the essential information and valuable resources needed by developers using Versant Object Database or Versant FastObjects. Visit the Actian Customer Portal at support.actian.com v

6 Please send feedback regarding this guide to: vi

7 About this Guide This guide presents a quick overview of new features and funtionality in FastObjects.NET 12 and describes changes and additions to be aware of when moving an existing application from FastObjects.NET Release 10 to FastObjects.NET Release 12. vii

8 viii

9 Chapter 1. What's New in FastObjects FastObjects Application and Server 64-bit support FastObjects.NET 12 applications (built with Visual Studio bit) can run in 64-bit mode. A 64-bit version of the FastObjects Server is also now supplied. New FastObjects data types for representing 8-byte integral types are introduced FastObjects Server Scalability Enhancement Parallel access to the same object has been improved FastObjects Server Performance optimization for.net (and Java) applications Transaction commit/rollback is now much faster FastObjects Server Unlimited parallel connections In previous versions of FastObjects, the maximum number of connections was limited to With FastObjects 11 the number of connections is limited only by the required virtual memory of the threads created for that connection Server usability Output to console, Server view, and file is configurable at runtime. Server view is available in the FastObjects Administrator. 1

10 Operation Monitoring Client-side scalability optimization 1.6. Operation Monitoring Client-side scalability optimization Performance improvement for applications using operation monitoring with many OperationHandler instances Recovery file improvements Changes to the FastObjects database are stored in a recovery file until the changes have been fully integrated into the database files. In previous versions the changes are written to the recovery file with a fixed chunk size of four kilo-bytes (4 KB). With FastObjects 12.0, the default chunk size is now 256 KB and is configurable in the FastObjects configuration file. [] recoverychunksize = 256 In order to find the optimum setting for a specific disk system, a benchmark can be run from the command line Fastobjects Server or ptserver -testrecovery ptserver64 -testrecovery This command prints the average time for various chunk sizes. Current disk systems perform much better than previous systems when large data-write requests. Especially RAID systems and SSD (Solid State Disk) systems will benefit from a larger chunk size. Depending on the underlying disk system the performance gain can be up to factor of five for the default recovery options Improved performance for queries using the index cache FastObjects uses a cache for index nodes for each index. In previous versions theses caches have often been invalidated when used for transactions which modified index nodes. In FastObjects 12.0 joint index caches are used to increase the effectiveness of the cache. Queries, especially, will 2

11 Improved performance for reindex, reorg and check benefit from the new cache implementation. The number of cached index nodes for each index can be configured individually. The default for each user defined index (indexcachecount) is 500 index nodes. The default for each all set/extent index (extentcachecount) is 50 index nodes. The default for the PtObjectAllSet index (the index for all persistent objects) is index nodes. In addition the number of cached index nodes for user indexes and the PtObject extent index has been increased. [] indexcachecount=500 # default was 100 index nodes in previous releases extentcachecount=50 # same default as in previous releases [databases\mybase\indexes\ptobject] # Settings in this section override settings made in the global section for the data\ base mybase extentcachecount=10000 # number of index nodes cached for the PtObjectAllSet index The total amount of memory used for all index caches is restricted with the configuration entry maxindexcachesizemb. The default is 10 MB. [] maxindexcachesizemb = 10 Please refer to the FastObjects Configuration Guide for more details. Additionly, the concurrent access to the index cache has been optimized for higher performance and increased scalability Improved performance for reindex, reorg and check The performance for the database administration reindex, reorg and check commands has been improved. Database files that must be scanned sequentially during these operations are now opened in sequential scan mode and are using an internal buffer to read ahead in the file. This allows a much better throughput when scanning the entire database file. The read ahead buffer size can be configured in the FastObjects configuration file: 3

12 Windows Native Authentication [] sequentialfilecachechunksizekb = 512 The value is in KB. The default is 256. This optimization is used for the database check command only if the database is opened in the new exclusive open mode. The FastObjects Database Administration Utility ptadmin is using this new open mode by default. In order to perform a database check on a database that is opened by other FastObjects client applications the check needs the new -concurrent option: ptadmin -check -concurrent In addition, the new joint index cache speeds up the reindex and reorg operations and the maximum size used for the index cache (maxindexcachesizemb) should be increased accordingly. As a rule-of-thumb, half of this memory should be configured for the PtObject AllSet/extent index Windows Native Authentication FastObjects now provides a Windows Security Support Provider Interface (SSPI) Negotiate package implementation for Kerberos and NTLM (Windows NT LAN Manager) authentication. Refer to the FastObjects Server User's Guide, chapter Connecting Clients to the FastObjects Server for more information Bit support for Solaris The FastObjects Server is available for 64-bit Solaris SPARC platforms Transactional removal of deleted indexes during update When a database is updated with a dictionary where indexes are removed from the schema, then these indexes are removed from the database as well. However, in previous releases the removal of indexes was not transactional and aborting the update process could leave the database in an inconsistent state. Now the removal of an index is done inside of an internal transaction. The maximum size of the internal transaction is determined via the setting admincachesize. 4

13 Transactional removal of deleted indexes during update [] admincachesize=16384 # default is KB 5

14 6

15 Chapter 2. New Features in FastObjects 12 since FastObjects Bit Support for Linux The FastObjects Server is available in 64 bit mode for Linux platforms Configuration of the System File Cache Size Symptom The read and write access to the FastObjects databases files benefit from the system file cache of the operating system. On Windows 64-Bit operating systems the working set of the Windows System File Cache (WSFC) is unlimited by default. That means that the working set of the WSFC can grow until all physical memory of the machine is exhausted. If this happens then all other applications start to swap. Microsoft provides the tool "Microsoft Windows Dynamic Cache Service" that runs as a service and keeps the working set of the WSFC on a configured level. This tool denies the installation on Windows Server 2008 R2, because a more sophisticated algorithm has been implemented for the WSFC on Windows Server 2008 R2. However, in some scenarios with extensive write access on Windows Server 2008 R2 the working set of the WSFC still keeps growing and causes other applications to swap. Now, the FastObjects Server can be configured to set the minimum and maximum size of the system file cache working set for the machine at startup. If both of the following configuration entries are present in the ptserver.cfg, then the FastObjects Server tries to configure the minimum and the maximum size of the system file cache at startup. [servers\ptserver] # Sets minimum to 150 MB. windowsminsystemfilecachesizemb = 150 # Sets maximum to 80% of physical memory. windowsmaxsystemfilecachesizemb = 80 The value for windowsminsystemfilecachesizemb determines the minimum of the working set of the system file cache in MB. If the value is negative, the minimum is set to disabled. The FastObjects Server 32-Bit cannot set a value larger than 4095 and will use 4095 for larger values. The minimum has to be at least 100 MB. If the value is smaller then 100 MB is used. 7

16 Performance improvement for reading objects greater than 1024 bytes The value for windowsmaxsystemfilecachesizemb determines the maximum of the working set of the system file cache. A value of determines the percentage of the physical memory that shall be used as the maximum. A values greater than 100 determines the maximum in MB. If the value is negative then the maximum is set to disabled. The FastObjects Server 32-Bit cannot set a value larger than 4095 and will use 4095 for larger values. The maximum has to be at least 100 MB larger than the minimum. Otherwise it will be set to the minimum MB. The actual calculated values for the system file cache size are reported to the Windows Application Eventlog. Notes The FastObjects Server needs administrative rights (as for the local system account) in order to set the system file cache size This setting will affect the performance of all applications on that machine The Windows API SetSystemFileCacheSize() is not available on all Windows platforms The FastObjects Server will startup regardless of any errors during the configuration of the system file cache size Errors are reported to the Windows Application Eventlog If the FastObjects Server 32-Bit is running on a Windows 64-Bit platform, then values higher than 4095 MB are reverted to 4095 MB due to 32-Bit API restrictions 2.3. Performance improvement for reading objects greater than 1024 bytes Previously, when an object larger than 1024 bytes was read from the database file, several read requests were issued to the disk in order to read the object record. Now, after reading the first cluster with the record header the rest of the object is read in one read request. 8

17 Improved, configurable progress information during long queries 2.4. Improved, configurable progress information during long queries A new configuration setting pendingmaxobjects has been introduced which can be set in the global section or per database to trigger a pending notification after a maxium number of executed objects has been reached during query loops. The default is Query debug output can be configured during runtime The FastObjects Server console can provide detailed information about query tasks, used indexes and query execution times. ptserver.cfg [debug] query=5 # default is 0 In FastObjects 12, this setting is evaluated every time the configuration file is read by the FastObjects Server, for example, when opening a database. (Reading the configuration file can also be forced by setting the verbose mode with the command line tool ptsu.) The FastObjects Server no longer needs to be restarted to evaluate this configuration setting. Enabling the query debug output does reduce the performance of the FastObjects Server and should be used in production environments only as needed All FastObjects runtime DLLs now have a predefined base address For Windows platforms, all FastObjects Runtime DLLs have predefined base addresses allowing the 32-Bit FastObjects Server to allocate more continuous memory. 9

18 Additional behavior for incremental sequences 2.7. Additional behavior for incremental sequences A new behavior can be configured for incremental sequences. Integral data types can be registered for providing an incremental sequence number on creation without a gap (autovalue=incrementoncreate). [] useexistingsequentialid = true This configuration provides an incremental sequence number only if that member is zero (default value for integral types). Otherwise the existing value for this member is used for storing the object Faster query execution for complex queries A query in FastObjects is executed in several query tasks. Depending on the result of a task other tasks do not need to be executed. The query engine has been improved to better decide to exclude dependent query tasks from execution. This can speed up complex queries and also fixes situations where the sort criteria has not been taken into account Better performance when extracting embedded class sets or basic type sets The calculation of the buffer size needed when extracting the data from an object into a buffer has been improved. This applies to the estimated size for sets of embedded classes with fixed size and for sets of basic types. The result is better performance owing to fewer memory allocations and less memory fragmentation Memory optimization for better performance A number of improvements has been made to memory allocation when using large collections. Faster memory grow algorithm for all sets The internal representation for sets uses a contiguous chunk of memory. If more memory is needed for adding an element then the memory chunk is 10

19 Performance optimization in C/S communication expanded to a new size. This algorithm was optimized for a small memory footprint. However, for very large sets this algorithm is slow and can lead to memory fragmentation. Now this algorithm is optimized for speed. This affects all sets used in persistent classes and internally in the FastObjects Runtime System and in the FastObjects Server. Less allocations for collection of client/server requests in client applications In C/S mode certain kind of calls (forgets, locks, forgets in batch transaction commit) are collected and sent to the FastObjects Server in one single C/S call. Now that collection starts with an expected num of 500 and will be shrinked to elements after the C/S call. The following configuration entries have been introduced for fine tuning. poet.cfg [] collectedserverrequestexpectednum=500 # default is 500 collectedserverrequestshrinkthresholdnum=10649 # default is Optimization for sequential queries and PtOnDemandSet queries in the FastObjects Server The initial size for the set that is used for collecting matching objects has been increased. In addition the optimized grow algorithm speeds up query execution Performance optimization in C/S communication When receiving a job (on the client or server side) FastObjects 12 now performs fewer memory allocations. This optimization results in faster communication between client and server Improved memory allocation for very large query results Previously, when receiving the result set for very large results (several million objects), many many memory allocations took place causing memory fragmentation. This allocation has been significantly improved with a corresponding increase in performance for large query results. 11

20 Better query estimation for conditions on indexed members Better query estimation for conditions on indexed members The FastObjects query optimizer estimation on indexed members has been improved. Query conditions that do not match objects are detected earlier detected leading to a more efficient query plan. This increases query execution performance Large transaction performance optimization The performance for committing transactions has been improved. All modifying operations benefit from this optimization. Large transactions benefit the most FastObjects Connect SQL views are now available in the ODBC catalog Cascading Delete Now deleting an object will also delete referenced objects that are marked as dependent with the DependAttribute. By default all references to objects and collections of references to objects are registered as non-dependent. For deleting objects without their dependent objects a transaction property can be set. scope.transactionproperties.deletedependent = false; 12

21 Chapter 3. Compatibility Issues This chapter provides a summary of compatibility issues you may encounter when moving from FastObjects.NET release 10 to Supported Platforms Windows The following Windows platforms are supported (both 32-bit and 64-bit editions): Windows 7, Windows 8, Windows 8.1, Windows Server 2008 R2, Windows Server 2012, and Windows Server 2012 R Supported Visual Studio.NET Frameworks You can use Microsoft Visual Studio 2010 (SP1) with.net Framework 4.0 for application development. Earlier versions of Visual Studio and.net Framework are no longer supported Supported.NET Languages FastObjects.NET Release 12 supports C# and Visual Basic. Support for J# is discontinued API and Database Compatibility New data types for integral types representing 8-bytes have been introduced for 64-bit support. Existing dictionaries need to be converted before the new data types can be registered. New dictionaries that are created with FastObjects 12 have the new dictionary format that allows for the new data types. Before you register your schema with FastObjects 12 you should consider if your application needs 64-bit support. Depending on the required compatibility level additional settings are required for schema capturing. By default, the new datatypes for 8-byte integral types will be registered in existing dictionaries that are converted to FastObjects If you need to maintain the original 13

22 Client/Server Compatibility datatypes, in the Visual Studio Properties Window for the project, you must set the project property FO10_Compatibility to true Client/Server Compatibility As installed, FastObjects 10.0 clients cannot connect to FastObjects bit server. However, FastObjects bit can be configured to accept FastObjects 10.0 clients with the following entry in the server configuration file. [] usegeneratedserviceid=true Client performance may be slightly reduced New default for maximum file size The maximumfilesize property determines the maximum size for database eventlog files and incremental backup files. The previous default was The new default is [] maximumfilesize= FastObjects Storage Clustering enabled by default Databases can be configured to store all new objects in a transaction to the same location in the database file. This is beneficial for storing, accessing, and deleting object networks. The database can grow faster when using this configuration if contiguous space for the new objects cannot be reclaimed from deleted objects and the database file needs to grow. Starting with FastObjects 12.0 it is enabled by default. FastObjects Storage Clustering can be disabled for all databases in the configuration file. [] storageclusteringpattern=none 14

23 Best scalability enabled for FastObjects Server by default 3.8. Best scalability enabled for FastObjects Server by default The FastObjects Server can be configured for best scalability. This can be done by setting the concurrencylevel property in the configuration file of the FastObjects Server to the value 12. In FastObjects 12.0 this setting is enabled by default. You can configure the previously used concurrency level in the configuration file of the FastObjects Server (ptserver.cfg). [servers\ptserver] concurrencylevel=9 # default is FastObjects Connect Simba Engine replaces the previously used Simba Engine Fastobjects Connect supports ODBC 32-bit only FastObjects Encryption The OpenSSL version used is now 1.0.1g (the previously used version was 0.9.7b). In addition, the FastObjects library filenames are now named depending on the compiler and run-time (32- or 64-bit) mode. For example, the SSLeay library for Windows for VisualStudio 2010, 64-bit is SSLeay100x64.dll. Refer to the FastObjects Application Deployment Guide for more information. 15

24 16

VirtualCenter Database Performance for Microsoft SQL Server 2005 VirtualCenter 2.5

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.

More information

Performance Characteristics of VMFS and RDM VMware ESX Server 3.0.1

Performance Characteristics of VMFS and RDM VMware ESX Server 3.0.1 Performance Study Performance Characteristics of and RDM VMware ESX Server 3.0.1 VMware ESX Server offers three choices for managing disk access in a virtual machine VMware Virtual Machine File System

More information

StreamServe Persuasion SP5 Microsoft SQL Server

StreamServe Persuasion SP5 Microsoft SQL Server StreamServe Persuasion SP5 Microsoft SQL Server Database Guidelines Rev A StreamServe Persuasion SP5 Microsoft SQL Server Database Guidelines Rev A 2001-2011 STREAMSERVE, INC. ALL RIGHTS RESERVED United

More information

CA ARCserve and CA XOsoft r12.5 Best Practices for protecting Microsoft SQL Server

CA ARCserve and CA XOsoft r12.5 Best Practices for protecting Microsoft SQL Server CA RECOVERY MANAGEMENT R12.5 BEST PRACTICE CA ARCserve and CA XOsoft r12.5 Best Practices for protecting Microsoft SQL Server Overview Benefits The CA Advantage The CA ARCserve Backup Support and Engineering

More information

SQL Anywhere 12 New Features Summary

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

More information

INTRODUCTION ADVANTAGES OF RUNNING ORACLE 11G ON WINDOWS. Edward Whalen, Performance Tuning Corporation

INTRODUCTION ADVANTAGES OF RUNNING ORACLE 11G ON WINDOWS. Edward Whalen, Performance Tuning Corporation ADVANTAGES OF RUNNING ORACLE11G ON MICROSOFT WINDOWS SERVER X64 Edward Whalen, Performance Tuning Corporation INTRODUCTION Microsoft Windows has long been an ideal platform for the Oracle database server.

More information

RTI Database Integration Service. Release Notes

RTI Database Integration Service. Release Notes RTI Database Integration Service Release Notes Version 5.2.0 2015 Real-Time Innovations, Inc. All rights reserved. Printed in U.S.A. First printing. June 2015. Trademarks Real-Time Innovations, RTI, NDDS,

More information

Advantage Database Server or Microsoft SQL Server which one is right for you?

Advantage Database Server or Microsoft SQL Server which one is right for you? Advantage Database Server or Microsoft SQL Server which one is right for you? white paper by Bill Todd executive summary To minimize the cost of deploying database applications, you must match the database

More information

MDM Multidomain Edition (Version 9.6.0) For Microsoft SQL Server Performance Tuning

MDM Multidomain Edition (Version 9.6.0) For Microsoft SQL Server Performance Tuning MDM Multidomain Edition (Version 9.6.0) For Microsoft SQL Server Performance Tuning 2014 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic,

More information

Server Consolidation with SQL Server 2008

Server Consolidation with SQL Server 2008 Server Consolidation with SQL Server 2008 White Paper Published: August 2007 Updated: July 2008 Summary: Microsoft SQL Server 2008 supports multiple options for server consolidation, providing organizations

More information

CA Nimsoft Monitor. Probe Guide for Active Directory Server. ad_server v1.4 series

CA Nimsoft Monitor. Probe Guide for Active Directory Server. ad_server v1.4 series CA Nimsoft Monitor Probe Guide for Active Directory Server ad_server v1.4 series Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as

More information

mguard Device Manager Release Notes Version 1.6.1

mguard Device Manager Release Notes Version 1.6.1 mguard Device Manager Release Notes Version 1.6.1 Innominate Security Technologies AG Rudower Chaussee 13 12489 Berlin Germany Phone: +49 30 921028 0 Fax: +49 30 921028 020 contact@innominate.com http://www.innominate.com/

More information

Release Notes For Versant/ODBC On Windows. Release 7.0.1.4

Release Notes For Versant/ODBC On Windows. Release 7.0.1.4 Release Notes For Versant/ODBC On Windows Release 7.0.1.4 Table of Contents CHAPTER 1: Release Notes... 3 Description of Release... 4 System Requirements... 4 Capabilities of the Drivers... 5 Restrictions

More information

CA ARCserve Backup for Windows

CA ARCserve Backup for Windows CA ARCserve Backup for Windows Agent for Sybase Guide r16.5 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Maximum Availability Architecture. Oracle Best Practices For High Availability. Backup and Recovery Scenarios for Oracle WebLogic Server: 10.

Maximum Availability Architecture. Oracle Best Practices For High Availability. Backup and Recovery Scenarios for Oracle WebLogic Server: 10. Backup and Recovery Scenarios for Oracle WebLogic Server: 10.3 An Oracle White Paper January, 2009 Maximum Availability Architecture Oracle Best Practices For High Availability Backup and Recovery Scenarios

More information

Getting Started with the Ed-Fi ODS and Ed-Fi ODS API

Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Ed-Fi ODS and Ed-Fi ODS API Version 2.0 - Technical Preview October 2014 2014 Ed-Fi Alliance, LLC. All rights reserved. Ed-Fi is a registered trademark

More information

Mission-Critical Java. An Oracle White Paper Updated October 2008

Mission-Critical Java. An Oracle White Paper Updated October 2008 Mission-Critical Java An Oracle White Paper Updated October 2008 Mission-Critical Java The Oracle JRockit family of products is a comprehensive portfolio of Java runtime solutions that leverages the base

More information

CA ARCserve Backup for Windows

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

More information

System Requirements and Platform Support Guide

System Requirements and Platform Support Guide Foglight 5.6.7 System Requirements and Platform Support Guide 2013 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in

More information

Running a Workflow on a PowerCenter Grid

Running a Workflow on a PowerCenter Grid Running a Workflow on a PowerCenter Grid 2010-2014 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise)

More information

Symantec Endpoint Protection 11.0 Architecture, Sizing, and Performance Recommendations

Symantec Endpoint Protection 11.0 Architecture, Sizing, and Performance Recommendations Symantec Endpoint Protection 11.0 Architecture, Sizing, and Performance Recommendations Technical Product Management Team Endpoint Security Copyright 2007 All Rights Reserved Revision 6 Introduction This

More information

Virtuoso and Database Scalability

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

More information

Configuring Apache Derby for Performance and Durability Olav Sandstå

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

More information

An Oracle White Paper September 2013. Advanced Java Diagnostics and Monitoring Without Performance Overhead

An Oracle White Paper September 2013. Advanced Java Diagnostics and Monitoring Without Performance Overhead An Oracle White Paper September 2013 Advanced Java Diagnostics and Monitoring Without Performance Overhead Introduction... 1 Non-Intrusive Profiling and Diagnostics... 2 JMX Console... 2 Java Flight Recorder...

More information

Windows Authentication on Microsoft SQL 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

More information

SQL Server. SQL Server 100 Most Asked Questions: Best Practices guide to managing, mining, building and developing SQL Server databases

SQL Server. SQL Server 100 Most Asked Questions: Best Practices guide to managing, mining, building and developing SQL Server databases SQL Server SQL Server 100 Most Asked Questions: Best Practices guide to managing, mining, building and developing SQL Server databases SQL Server 100 Success Secrets Copyright 2008 Notice of rights All

More information

VirtualCenter Database Maintenance VirtualCenter 2.0.x and Microsoft SQL Server

VirtualCenter Database Maintenance VirtualCenter 2.0.x and Microsoft SQL Server Technical Note VirtualCenter Database Maintenance VirtualCenter 2.0.x and Microsoft SQL Server This document discusses ways to maintain the VirtualCenter database for increased performance and manageability.

More information

Migrating to vcloud Automation Center 6.1

Migrating to vcloud Automation Center 6.1 Migrating to vcloud Automation Center 6.1 vcloud Automation Center 6.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a

More information

SQL Server Setup Guide for BusinessObjects Planning

SQL Server Setup Guide for BusinessObjects Planning SQL Server Setup Guide for BusinessObjects Planning BusinessObjects Planning XI Release 2 Copyright 2007 Business Objects. All rights reserved. Business Objects owns the following U.S. patents, which may

More information

StreamServe Persuasion SP5 StreamStudio

StreamServe Persuasion SP5 StreamStudio StreamServe Persuasion SP5 StreamStudio Administrator s Guide Rev B StreamServe Persuasion SP5 StreamStudio Administrator s Guide Rev B OPEN TEXT CORPORATION ALL RIGHTS RESERVED United States and other

More information

SAS 9.4 Intelligence Platform

SAS 9.4 Intelligence Platform SAS 9.4 Intelligence Platform Application Server Administration Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2013. SAS 9.4 Intelligence Platform:

More information

System Planning, Deployment, and Best Practices Guide

System Planning, Deployment, and Best Practices Guide www.novell.com/documentation System Planning, Deployment, and Best Practices Guide ZENworks Application Virtualization 9.0 February 22, 2012 Legal Notices Novell, Inc., makes no representations or warranties

More information

SQL Backup and Restore using CDP

SQL Backup and Restore using CDP CDP SQL Backup and Restore using CDP Table of Contents Table of Contents... 1 Introduction... 2 Supported Platforms... 2 SQL Server Connection... 2 Figure 1: CDP Interface with the SQL Server... 3 SQL

More information

Veeam Cloud Connect. Version 8.0. Administrator Guide

Veeam Cloud Connect. Version 8.0. Administrator Guide Veeam Cloud Connect Version 8.0 Administrator Guide April, 2015 2015 Veeam Software. All rights reserved. All trademarks are the property of their respective owners. No part of this publication may be

More information

TIBCO Spotfire Web Player 6.0. Installation and Configuration Manual

TIBCO Spotfire Web Player 6.0. Installation and Configuration Manual TIBCO Spotfire Web Player 6.0 Installation and Configuration Manual Revision date: 12 November 2013 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED

More information

Availability Digest. www.availabilitydigest.com. Raima s High-Availability Embedded Database December 2011

Availability Digest. www.availabilitydigest.com. Raima s High-Availability Embedded Database December 2011 the Availability Digest Raima s High-Availability Embedded Database December 2011 Embedded processing systems are everywhere. You probably cannot go a day without interacting with dozens of these powerful

More information

CA Unified Infrastructure Management

CA Unified Infrastructure Management CA Unified Infrastructure Management Probe Guide for Informix Database Monitoring informix v4.1 series Copyright Notice This online help system (the "System") is for your informational purposes only and

More information

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

More information

Altiris Patch Management Solution for Windows 7.1 from Symantec Release Notes

Altiris Patch Management Solution for Windows 7.1 from Symantec Release Notes Altiris Patch Management Solution for Windows 7.1 from Symantec Release Notes Altiris Patch Management Solution for Windows 7.1 from Symantec Release Notes The software described in this book is furnished

More information

Contents. 2. cttctx Performance Test Utility... 8. 3. Server Side Plug-In... 9. 4. Index... 11. www.faircom.com All Rights Reserved.

Contents. 2. cttctx Performance Test Utility... 8. 3. Server Side Plug-In... 9. 4. Index... 11. www.faircom.com All Rights Reserved. c-treeace Load Test c-treeace Load Test Contents 1. Performance Test Description... 1 1.1 Login Info... 2 1.2 Create Tables... 3 1.3 Run Test... 4 1.4 Last Run Threads... 5 1.5 Total Results History...

More information

Oracle 11g Database Administration

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

More information

SQLBase. Starter Guide 20-2905-1004

SQLBase. Starter Guide 20-2905-1004 SQLBase Starter Guide 20-2905-1004 Trademarks Centura, Centura net.db, Centura Ranger, the Centura logo, Centura Web Developer, Gupta, the Gupta logo, Gupta Powered, the Gupta Powered logo, Fast Facts,

More information

ImageNow for Microsoft SQL Server

ImageNow for Microsoft SQL Server ImageNow for Microsoft SQL Server Best Practices Guide ImageNow Version: 6.7. x Written by: Product Documentation, R&D Date: July 2013 2013 Perceptive Software. All rights reserved CaptureNow, ImageNow,

More information

Sawmill Log Analyzer Best Practices!! Page 1 of 6. Sawmill Log Analyzer Best Practices

Sawmill Log Analyzer Best Practices!! Page 1 of 6. Sawmill Log Analyzer Best Practices Sawmill Log Analyzer Best Practices!! Page 1 of 6 Sawmill Log Analyzer Best Practices! Sawmill Log Analyzer Best Practices!! Page 2 of 6 This document describes best practices for the Sawmill universal

More information

Protect SAP HANA Based on SUSE Linux Enterprise Server with SEP sesam

Protect SAP HANA Based on SUSE Linux Enterprise Server with SEP sesam Protect SAP HANA Based on SUSE Linux Enterprise Server with SEP sesam Many companies of different sizes and from all sectors of industry already use SAP s inmemory appliance, HANA benefiting from quicker

More information

PC-Duo Web Console Installation Guide

PC-Duo Web Console Installation Guide PC-Duo Web Console Installation Guide Release 12.1 August 2012 Vector Networks, Inc. 541 Tenth Street, Unit 123 Atlanta, GA 30318 (800) 330-5035 http://www.vector-networks.com Copyright 2012 Vector Networks

More information

SQL Server 2008 Performance and Scale

SQL Server 2008 Performance and Scale SQL Server 2008 Performance and Scale White Paper Published: February 2008 Updated: July 2008 Summary: Microsoft SQL Server 2008 incorporates the tools and technologies that are necessary to implement

More information

SQL Server Maintenance Plans

SQL Server Maintenance Plans SQL Server Maintenance Plans BID2WIN Software, Inc. September 2010 Abstract This document contains information related to SQL Server 2005 and SQL Server 2008 and is a compilation of research from various

More information

Mimer SQL Real-Time Edition White Paper

Mimer SQL Real-Time Edition White Paper Mimer SQL Real-Time Edition - White Paper 1(5) Mimer SQL Real-Time Edition White Paper - Dag Nyström, Product Manager Mimer SQL Real-Time Edition Mimer SQL Real-Time Edition is a predictable, scalable

More information

Whitepaper: Back Up SAP HANA and SUSE Linux Enterprise Server with SEP sesam. info@sepusa.com www.sepusa.com Copyright 2014 SEP

Whitepaper: Back Up SAP HANA and SUSE Linux Enterprise Server with SEP sesam. info@sepusa.com www.sepusa.com Copyright 2014 SEP Whitepaper: Back Up SAP HANA and SUSE Linux Enterprise Server with SEP sesam info@sepusa.com www.sepusa.com Table of Contents INTRODUCTION AND OVERVIEW... 3 SOLUTION COMPONENTS... 4-5 SAP HANA... 6 SEP

More information

Dell NetVault Backup Plug-in for Advanced Encryption 2.2. User s Guide

Dell NetVault Backup Plug-in for Advanced Encryption 2.2. User s Guide Dell Backup Plug-in for Advanced Encryption 2.2 2014 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished

More information

BrightStor ARCserve Backup for Windows

BrightStor ARCserve Backup for Windows BrightStor ARCserve Backup for Windows Agent for Microsoft SQL Server r11.5 D01173-2E This documentation and related computer software program (hereinafter referred to as the "Documentation") is for the

More information

Gladinet Cloud Backup V3.0 User Guide

Gladinet Cloud Backup V3.0 User Guide Gladinet Cloud Backup V3.0 User Guide Foreword The Gladinet User Guide gives step-by-step instructions for end users. Revision History Gladinet User Guide Date Description Version 8/20/2010 Draft Gladinet

More information

QAD Enterprise Applications. Training Guide Demand Management 6.1 Technical Training

QAD Enterprise Applications. Training Guide Demand Management 6.1 Technical Training QAD Enterprise Applications Training Guide Demand Management 6.1 Technical Training 70-3248-6.1 QAD Enterprise Applications February 2012 This document contains proprietary information that is protected

More information

HYPERION SYSTEM 9 N-TIER INSTALLATION GUIDE MASTER DATA MANAGEMENT RELEASE 9.2

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

More information

How to Choose your Red Hat Enterprise Linux Filesystem

How to Choose your Red Hat Enterprise Linux Filesystem How to Choose your Red Hat Enterprise Linux Filesystem EXECUTIVE SUMMARY Choosing the Red Hat Enterprise Linux filesystem that is appropriate for your application is often a non-trivial decision due to

More information

Configuring and Integrating Oracle

Configuring and Integrating Oracle Configuring and Integrating Oracle The Basics of Oracle 3 Configuring SAM to Monitor an Oracle Database Server 4 This document includes basic information about Oracle and its role with SolarWinds SAM Adding

More information

Oracle SQL Developer Migration

Oracle SQL Developer Migration An Oracle White Paper May 2010 Oracle SQL Developer Migration Overview... 3 Introduction... 3 Oracle SQL Developer: Architecture and Supported Platforms... 3 Supported Platforms... 4 Supported Databases...

More information

SkyRecon Cryptographic Module (SCM)

SkyRecon Cryptographic Module (SCM) SkyRecon Cryptographic Module (SCM) FIPS 140-2 Documentation: Security Policy Abstract This document specifies the security policy for the SkyRecon Cryptographic Module (SCM) as described in FIPS PUB 140-2.

More information

Integrated Virtual Debugger for Visual Studio Developer s Guide VMware Workstation 8.0

Integrated Virtual Debugger for Visual Studio Developer s Guide VMware Workstation 8.0 Integrated Virtual Debugger for Visual Studio Developer s Guide VMware Workstation 8.0 This document supports the version of each product listed and supports all subsequent versions until the document

More information

A Survey of Shared File Systems

A Survey of Shared File Systems Technical Paper A Survey of Shared File Systems Determining the Best Choice for your Distributed Applications A Survey of Shared File Systems A Survey of Shared File Systems Table of Contents Introduction...

More information

Change Manager 5.0 Installation Guide

Change Manager 5.0 Installation Guide Change Manager 5.0 Installation Guide Copyright 1994-2008 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. All rights reserved.

More information

Plug-In for Informatica Guide

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

More information

Enterprise Backup and Restore technology and solutions

Enterprise Backup and Restore technology and solutions Enterprise Backup and Restore technology and solutions LESSON VII Veselin Petrunov Backup and Restore team / Deep Technical Support HP Bulgaria Global Delivery Hub Global Operations Center November, 2013

More information

Configuring Apache Derby for Performance and Durability Olav Sandstå

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

More information

With each new release of SQL Server, Microsoft continues to improve

With each new release of SQL Server, Microsoft continues to improve Chapter 1: Configuring In This Chapter configuration tools Adjusting server parameters Generating configuration scripts With each new release of, Microsoft continues to improve and simplify the daily tasks

More information

Novell File Reporter 2.5 Who Has What?

Novell File Reporter 2.5 Who Has What? Novell File Reporter 2.5 Who Has What? Richard Cabana Senior Systems Engineer File Access & Mgmt Solution Principal Attachmate Novell North America rcabana@novell.com Joe Marton Senior Systems Engineer

More information

Jitterbit Technical Overview : Salesforce

Jitterbit Technical Overview : Salesforce Jitterbit allows you to easily integrate Salesforce with any cloud, mobile or on premise application. Jitterbit s intuitive Studio delivers the easiest way of designing and running modern integrations

More information

Advantage Database Server

Advantage Database Server Advantage Database Server data sheet Advantage Database Server is a complete, high performance client/server data management solution for stand-alone, networked, Internet, and mobile database applications.

More information

How To Install An Aneka Cloud On A Windows 7 Computer (For Free)

How To Install An Aneka Cloud On A Windows 7 Computer (For Free) MANJRASOFT PTY LTD Aneka 3.0 Manjrasoft 5/13/2013 This document describes in detail the steps involved in installing and configuring an Aneka Cloud. It covers the prerequisites for the installation, the

More information

Migrating Non-Oracle Databases and their Applications to Oracle Database 12c O R A C L E W H I T E P A P E R D E C E M B E R 2 0 1 4

Migrating Non-Oracle Databases and their Applications to Oracle Database 12c O R A C L E W H I T E P A P E R D E C E M B E R 2 0 1 4 Migrating Non-Oracle Databases and their Applications to Oracle Database 12c O R A C L E W H I T E P A P E R D E C E M B E R 2 0 1 4 1. Introduction Oracle provides products that reduce the time, risk,

More information

Agile Business Suite: a 4GL environment for.net developers DEVELOPMENT, MAINTENANCE AND DEPLOYMENT OF LARGE, COMPLEX BACK-OFFICE APPLICATIONS

Agile Business Suite: a 4GL environment for.net developers DEVELOPMENT, MAINTENANCE AND DEPLOYMENT OF LARGE, COMPLEX BACK-OFFICE APPLICATIONS Agile Business Suite: a 4GL environment for.net developers DEVELOPMENT, MAINTENANCE AND DEPLOYMENT OF LARGE, COMPLEX BACK-OFFICE APPLICATIONS In order to ease the burden of application lifecycle management,

More information

Versant Object Database Fundamentals Manual

Versant Object Database Fundamentals Manual Object Database Fundamentals Manual Object Database Fundamentals Manual Object Database Copyright 2001-2010 Corporation. All rights reserved. The software described in this document is subject to change

More information

Using the Caché SQL Gateway

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

More information

multiple placeholders bound to one definition, 158 page approval not match author/editor rights, 157 problems with, 156 troubleshooting, 156 158

multiple placeholders bound to one definition, 158 page approval not match author/editor rights, 157 problems with, 156 troubleshooting, 156 158 Index A Active Directory Active Directory nested groups, 96 creating user accounts, 67 custom authentication, 66 group members cannot log on, 153 mapping certificates, 65 mapping user to Active Directory

More information

Decision Support System Software Asset Management (SAM)

Decision Support System Software Asset Management (SAM) DecisionSupportSystem SoftwareAssetManagement(SAM) ReleaseNotes Version1.2.3 May,2010 BigFix DSSSAM1.2.3 2009-2010 BigFix, Inc. All rights reserved. BigFix, Fixlet, Relevance Engine, Powered by BigFix

More information

SAS 9.3 Intelligence Platform

SAS 9.3 Intelligence Platform SAS 9.3 Intelligence Platform Application Server Administration Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc 2011. SAS SAS 9.3 Intelligence

More information

ILMT Central Team. Performance tuning. IBM License Metric Tool 9.0 Questions & Answers. 2014 IBM Corporation

ILMT Central Team. Performance tuning. IBM License Metric Tool 9.0 Questions & Answers. 2014 IBM Corporation ILMT Central Team Performance tuning IBM License Metric Tool 9.0 Questions & Answers ILMT Central Team Contact details LMTHelp@us.ibm.com https://ibm.biz/ilmt_forum https://ibm.biz/ilmt_wiki https://ibm.biz/ilmt_youtube

More information

Dell InTrust 11.0. Preparing for Auditing Microsoft SQL Server

Dell InTrust 11.0. Preparing for Auditing Microsoft SQL Server 2014 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished under a software license or nondisclosure agreement.

More information

Scalability. Microsoft Dynamics GP 10.0. Benchmark Performance: Advantages of Microsoft SQL Server 2008 with Compression.

Scalability. Microsoft Dynamics GP 10.0. Benchmark Performance: Advantages of Microsoft SQL Server 2008 with Compression. Scalability Microsoft Dynamics GP 10.0 Benchmark Performance: Advantages of Microsoft SQL Server 2008 with Compression White Paper May 2009 Contents Introduction... 3 Summary Results... 3 Benchmark Test

More information

McAfee Web Gateway 7.4.1

McAfee Web Gateway 7.4.1 Release Notes Revision B McAfee Web Gateway 7.4.1 Contents About this release New features and enhancements Resolved issues Installation instructions Known issues Find product documentation About this

More information

Microsoft Internet Information Services Solution 1.0

Microsoft Internet Information Services Solution 1.0 Microsoft Internet Information Services Solution 1.0 vrealize Operations Manager This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

PUBLIC Installation: SAP Mobile Platform Server for Linux

PUBLIC Installation: SAP Mobile Platform Server for Linux SAP Mobile Platform 3.0 SP11 Document Version: 1.0 2016-06-09 PUBLIC Content 1.... 4 2 Planning the Landscape....5 2.1 Installation Worksheets....6 3 Installing SAP Mobile Platform Server....9 3.1 Acquiring

More information

Raima Database Manager Version 14.0 In-memory Database Engine

Raima Database Manager Version 14.0 In-memory Database Engine + Raima Database Manager Version 14.0 In-memory Database Engine By Jeffrey R. Parsons, Senior Engineer January 2016 Abstract Raima Database Manager (RDM) v14.0 contains an all new data storage engine optimized

More information

Oracle Essbase Integration Services. Readme. Release 9.3.3.0.00

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.

More information

Oracle Enterprise Manager

Oracle Enterprise Manager Oracle Enterprise Manager System Monitoring Plug-in for Oracle TimesTen In-Memory Database Installation Guide Release 11.2.1 E13081-02 June 2009 This document was first written and published in November

More information

IBM WebSphere Business Integration for HIPAA

IBM WebSphere Business Integration for HIPAA Prepare your business for the future as you prepare for HIPAA IBM WebSphere Business Integration for HIPAA Helps ensure your business is ready to meet the HIPAA mandates Allows private and highly secure

More information

Firebird. A really free database used in free and commercial projects

Firebird. A really free database used in free and commercial projects Firebird A really free database used in free and commercial projects Holger Klemt CEO IBExpert KG, Germany hklemt@ibexpert.com This presentation: www.ibexpert.com/firebird.pdf What is Firebird? Firebird

More information

Sitecore Health. Christopher Wojciech. netzkern AG. christopher.wojciech@netzkern.de. Sitecore User Group Conference 2015

Sitecore Health. Christopher Wojciech. netzkern AG. christopher.wojciech@netzkern.de. Sitecore User Group Conference 2015 Sitecore Health Christopher Wojciech netzkern AG christopher.wojciech@netzkern.de Sitecore User Group Conference 2015 1 Hi, % Increase in Page Abondonment 40% 30% 20% 10% 0% 2 sec to 4 2 sec to 6 2 sec

More information

Oracle Architecture, Concepts & Facilities

Oracle Architecture, Concepts & Facilities COURSE CODE: COURSE TITLE: CURRENCY: AUDIENCE: ORAACF Oracle Architecture, Concepts & Facilities 10g & 11g Database administrators, system administrators and developers PREREQUISITES: At least 1 year of

More information

Unisys INFOIMAGE FOLDER ON WINDOWS NT. Connector for Microsoft Exchange. Getting Started Guide

Unisys INFOIMAGE FOLDER ON WINDOWS NT. Connector for Microsoft Exchange. Getting Started Guide INFOIMAGE FOLDER ON WINDOWS NT Connector for Microsoft Exchange Unisys Getting Started Guide Copyright 1999 Unisys Corporation. All rights reserved. Unisys is a registered trademark of Unisys Corporation.

More information

White Paper. Optimizing the Performance Of MySQL Cluster

White Paper. Optimizing the Performance Of MySQL Cluster White Paper Optimizing the Performance Of MySQL Cluster Table of Contents Introduction and Background Information... 2 Optimal Applications for MySQL Cluster... 3 Identifying the Performance Issues.....

More information

Boost SQL Server Performance Buffer Pool Extensions & Delayed Durability

Boost SQL Server Performance Buffer Pool Extensions & Delayed Durability Boost SQL Server Performance Buffer Pool Extensions & Delayed Durability Manohar Punna President - SQLServerGeeks #509 Brisbane 2016 Agenda SQL Server Memory Buffer Pool Extensions Delayed Durability Analysis

More information

ORACLE INSTANCE ARCHITECTURE

ORACLE INSTANCE ARCHITECTURE ORACLE INSTANCE ARCHITECTURE ORACLE ARCHITECTURE Oracle Database Instance Memory Architecture Process Architecture Application and Networking Architecture 2 INTRODUCTION TO THE ORACLE DATABASE INSTANCE

More information

Maximizing Backup and Restore Performance of Large Databases

Maximizing Backup and Restore Performance of Large Databases Maximizing Backup and Restore Performance of Large Databases - 1 - Forward (from Meta Group) Most companies critical data is being stored within relational databases. Over 90% of all mission critical systems,

More information

System Requirements for Microsoft Dynamics NAV 2013 R2

System Requirements for Microsoft Dynamics NAV 2013 R2 System Requirements for Microsoft Dynamics NAV 2013 R2 February 2014 Contents 3 System Requirements for the Microsoft Dynamics NAV Windows Client 3 Web Client 4 System Requirements for Microsoft Dynamics

More information

RTI Real-Time Connect. Release Notes

RTI Real-Time Connect. Release Notes RTI Real-Time Connect Release Notes Version 4.5f 2012 Real-Time Innovations, Inc. All rights reserved. Printed in U.S.A. First printing. March 2012. Trademarks Real-Time Innovations, RTI, and Connext are

More information

Monitoring DoubleTake Availability

Monitoring DoubleTake Availability Monitoring DoubleTake Availability eg Enterprise v6 Restricted Rights Legend The information contained in this document is confidential and subject to change without notice. No part of this document may

More information

Performance Tuning Guidelines for PowerExchange for Microsoft Dynamics CRM

Performance Tuning Guidelines for PowerExchange for Microsoft Dynamics CRM Performance Tuning Guidelines for PowerExchange for Microsoft Dynamics CRM 1993-2016 Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information

Siebel Installation Guide for UNIX. Siebel Innovation Pack 2013 Version 8.1/8.2, Rev. A April 2014

Siebel Installation Guide for UNIX. Siebel Innovation Pack 2013 Version 8.1/8.2, Rev. A April 2014 Siebel Installation Guide for UNIX Siebel Innovation Pack 2013 Version 8.1/8.2, Rev. A April 2014 Copyright 2005, 2014 Oracle and/or its affiliates. All rights reserved. This software and related documentation

More information