5 - Implemented a simple data compression algorithm for use within the Client/Server environment to reduce data transmission requirements.

Size: px
Start display at page:

Download "5 - Implemented a simple data compression algorithm for use within the Client/Server environment to reduce data transmission requirements."

Transcription

1 - README FILE - ProvideX ODBC Driver Versions 4.10 & 4.00 June 2006 Sage Software Canada Ltd 8920 Woodbine Avenue Suite 400 Markham, Ontario L3R 9W9 Tel *** NOTES *** Version 4.10 is a minor release that contains the latest additions & changes to the ProvideX ODBC driver. It replaces Version 4.00 in its entirety. This document contains all of the release notes for Versions 4.00 and 4.10 of the ProvideX ODBC driver. ProvideX ODBC Driver Version 4.10 June Addressed an issue reporting an incorrect data type to Microsoft SQL Server. The driver now uses the SQL_VARCHAR data type instead of SQL_CHAR for all string types which may not be padded to their full length; e.g., for DELIMITED fields and for FIXED segments of an external key. 2 - Resolved an issue where it was possible to write a record to a file which was larger than the defined record size. Previously, writing a record larger than the record size could damage the file resulting in an Error #108 (Keyed file error (Record length invalid)) when attempting to open the file within ProvideX. 3 - Added ODBC server support for the SunSparc8 and above. 4 - Corrected the implementation of the SQLTables() function to allow either a specific table name or a null table name to select all tables in the datasource. 5 - Implemented a simple data compression algorithm for use within the Client/Server environment to reduce data transmission requirements. 6 - Added optimization of SQL SELECT statements that contain LEFT OUTER JOINed tables and an ORDER BY clause. This optimization can be disabled through the use of an environment variable, PVK_OPTIMIZE_OJ. If PVK_OPTIMIZE_OJ exists and is equal to zero the optimization will be disabled. 7 - Implemented version control to ensure compatibility between components of the ODBC driver. Version checks include: a) Client side - Driver to IO Library b) Server side - Server to IO Library c) Client to Server. Attempting to use mismatched versions will produce an error message. 8 - Added the following error message when the 'security:' tag is missing from the configuration file (pvxiosvr.conf) on UNIX and Linux servers: [ProvideX][ODBC Driver][FILEIO]Security configuration is invalid 1

2 9 - Resolved a problem with incorrect results being returned when using a partial value with a 'GREATER THAN' clause. For example, SELECT ItemNumber FROM InventoryMasterfile WHERE ItemNumber > '1001' Did not return values such as: 1001-HON-H HON-H252LK 1001-HON-H HON-H254LK 10 - Addressed an issue where the driver could incorrectly report an 'Unable to locate record for the requested key' error when the first record of a nonnormalized file was shorter than its defined length Improved support for arrays defined via the ProvideX Data Dictionary Added a 'Strip trailing spaces' option to the DSN setup with a corresponding connection string option of 'StripTrailingSpaces=' with values of 1 (true) or 0 (false). This option provides the ability to compare spacepadded and delimited values. For example: FIELD1 is defined as STRING, LEN=5, DELIMITED and has a value '123' FIELD2 is defined as STRING, LEN=5, FIXED and has a value '123 ' If the 'Strip trailing spaces' option is ENABLED, then 'FIELD1=FIELD2' expression is TRUE, otherwise it is FALSE Enabled the use of keys with descending segments in random navigation Resolved an issue where the driver did not recognize upper case INI file extensions. Now both.ini and.ini are supported Addressed an issue where the connection timeout may not initially be set to 0 (no timeout) resulting in incorrect timeout errors. This value can be changed by external applications using SQL API SQLSetConnectAttr() function call Fixed a compatibility issue with MSSQL Server/DTS. The server was failing when trying to import tables with large fields (in excess of 16K) Addressed erroneous reports of "Data Dictionary not found" with MAS90 version 4 systems when the table/path name exceeded 120 characters in length Fixed an incorrect report of "missing table" caused by underscores, "_", in the name. The SQLTables() function was not stripping the backslash, "\" which is used to escape the underscore. If the underscore is not proceeded by a backslash then the underscore is considered as a wild card match for any character. For example, 'AP1_VendorMaster' was presented as 'AP1\_VendorMaster' which made this table inaccessible Corrected a query timeout issue caused by the incorrect application of the connection timeout to the statement timeout. This resulted in early termination of the execution on large reports (long running SQL statements) Resolved an issue where incorrect processing of numeric segments of the primary key could cause the ODBC server to shutdown Corrected storage of SQL_ATTR_MAX_ROWS. The value being set was saved as a 16-bit number instead of a 32-bit number [Client/Server Version Only] Fixed a problem where data files were left 2

3 open if the client application was abnormally terminated or the network connection was broken UNIX/Linux command line options --version and --debug tested for in lowercase as per help text. Previously only all uppercase was being matched [UNIX/Linux Server Only] Changed creation logic of the file pvxiosvr.pid to allow the umask setting to control access by group and other. Previously the file was created with only read-write permission for the user, no access for group or other Fixed a problem where EFF files larger than 2GB could not be accessed on platforms with LFS enabled [New Red Hat Server] Addressed an issue involving Red Hat Enterprise 4 where the incorrect processing of user licenses could cause a new user connection to fail. This occurred due to a compatibility issue with shared memory operations between RedHat 7.2 and RedHat Enterprise 4. Now there is an ODBC Server port specifically for the RedHat Enterprise family. This port should be used on RedHat Enterprise 3 and 4 systems. Older RedHat systems (7, 8, and 9) can continue using the RedHat 7.2 port Corrected a potential GPF in MS Query that could occur when accessing tables with fields defined with a length of 0. ProvideX ODBC Driver Version 4.00 December 2004 ProvideX ODBC Version 4 is a major release that requires a new activation key. This release includes the following changes and new features: - Significant performance improvements - Support for EFF files - Expanded SQL syntax - Redesigned server model - Consolidated local and client installations NEW ACTIVATION KEY REQUIRED A temporary key from a Version 6 Professional or E-commerce, or an upgrade to an existing ODBC key is required to activate the Version 4 ODBC driver. If the activation key currently installed is not a ProvideX Version 6 key, then the driver or server will run in Demo mode. No activation is required if the ProvideX ODBC driver is used with an activated ProvideX IO Server. If the driver is used as a local (no server) ODBC driver, then an activation key is required. PERFORMANCE IMPROVEMENTS Performance was the development focus for this release. The local driver in Version 4 performs significantly faster than in Version 3 and the client-server driver is now, in most instances, faster than the local driver. Server-side support for numeric restrictions is one example of Version 4 improvements. Previously, the restriction of a query on a numeric field was processed on the client-side. In Version 4 of the ODBC driver, the restriction is sent to the server and only records that match the restriction are returned to the client. This significantly reduces network traffic and results in a performance gain. 3

4 ENHANCED FILE FORMAT (EFF) SUPPORT The ability to read and update EFF-based files is available with Version 4. Platform limitations on file size may apply. See ProvideX V6 documentation for additional information. SQL ENHANCEMENTS The following SQL items are now supported. Refer to the revised ProvideX ODBC manual for complete syntax. TOP keyword syntax: SELECT TOP n selectcols FROM tablelist where groupby having Where: n is a positive integer to limit the rowset size to. SQLSetStmtOption attribute SQL_MAX_ROWS: This statement attribute is similar to the TOP keyword; however, the value is applied to all SQL statements processed on the statement handle to which SQL_MAX_ROWS was applied. A TOP keyword in an SQL statement will override the value of SQL_MAX_ROWS. REDESIGNED SERVER MODEL The name of the driver as it appears in the installed drivers listing of the ODBC Driver manager has been changed from "ProvideX 32-Bit ODBC Driver" and "ProvideX 32-Bit ODBC Client Driver" to "ProvideX ODBC Driver". This will allow both Version 3 drivers and Version 4 drivers to be installed on a system without conflict. A new version check between client and server has been implemented to minimize compatibility issues that occur when upgrading only one side of a client server installation. CONSOLIDATED LOCAL AND CLIENT INSTALLATION The local and client drivers are consolidated into a single DLL. The DLL's and executable have been renamed. The local and client DLL's: pvxodb32.dll and pvkiw32.dll (local driver) pvxodc32.dll and pvkic32.dll (client driver) have been consolidated into: pvxodbc.dll and pvxio.dll (both local and client driver) The server executable and DLL: pvxodbs.exe and pvkis32.dll (Windows) or pvxodbs (UNIX/Linux) have been renamed to: pvxiosvr.exe and pvxio.dll (Windows) or pvxiosvr (UNIX/Linux) ADDITIONAL INFORMATION INSTALLATION NOTES: 4

5 The installation routine will only update System DSN's during an upgrade of an existing driver. If you choose to upgrade an existing driver, file and user DSN's will continue to point to the old and now non-existent pre-v4 driver dll's thus making them unusable. File and user DSN's should be removed prior to upgrading from an existing level 3 driver. The Version 4 IO server cannot be running at the same time as any previous version of ProvideX ODBC server. On Windows, the executable uses the same registry entry, thus shares the port number. On UNIX/Linux the servers use the same shared memory ID, and only one instance is allowed. MAS 90, MAS 200 USERS: Please note that version 4.0 of the ProvideX ODBC driver is not compatible with version 4.0 of MAS 90/200. Use of the version 4.0 ProvideX ODBC driver with a version 4.0 MAS 90/200 is not supported. UNIX/Linux NOTES: The ProvideX IO Server now records the pid (Process ID) of the server in a file (pvxiosvr.pid) to assist in shutting down the server. There is a new command line argument available to shutdown the server: pvxiosvr -s or pvxiosvr --shutdown If the server can locate the pvxiosvr.pid file, then the running server will be shut down properly otherwise an error message will be printed to standard out. The ProvideX IO Server now logs startup and shutdown with syslogd (system log daemon). 5

3. Force the debug log file name to end in.txt or.log to prevent a malicious user from overwriting executable files (i.e..exe or.dll).

3. Force the debug log file name to end in.txt or.log to prevent a malicious user from overwriting executable files (i.e..exe or.dll). ProvideX ODBC 3.32 Driver - README.TXT November 2003 1. Key words "OUTER" and "INNER" are now optional when specifying a LEFT [OUTER] or [INNER] JOIN. 2. Added support for keyword(s) "CROSS JOIN". "CROSS

More information

ProvideX ODBC. Local and Client/Server. Version 4.10

ProvideX ODBC. Local and Client/Server. Version 4.10 ProvideX ODBC Local and Client/Server Version 4.10 Introduction 3 Installation Procedures 6 Local & Client Configuration 10 Server Configuration 19 Table Definitions 26 Using the ODBC Driver 40 ProvideX

More information

ProvideX. Version 4.21

ProvideX. Version 4.21 ProvideX ODBC Local and Client/Server Version 4.21 Introduction 4 Installation Procedures 7 Local & Client Configuration 11 Server Configuration and Startup 20 Table Definitions 27 Using the ODBC Driver

More information

1. Fixed a bug in processing doubley defined tables (where both DD and INI are given in a DSN) when a relative path is used.

1. Fixed a bug in processing doubley defined tables (where both DD and INI are given in a DSN) when a relative path is used. ProvideX Client/Server ODBC 3.21 Driver - README.TXT Oct 2001 ProvideX ODBC 3.21 Driver - Changes/Corrections/Enhancements ***IMPORTANT*** Use of the 3.21 ODBC Server, requires that you use at least a

More information

1. Corrected NULL padding of records with external key and non-delimited fields

1. Corrected NULL padding of records with external key and non-delimited fields ProvideX ODBC 3.12 Driver - README.TXT May 2001 ProvideX ODBC 3.12 Driver - Changes/Corrections/Enhancements 1. Corrected NULL padding of records with external key and non-delimited fields 2. Corrected

More information

ProvideX. C-Library File IO Routines

ProvideX. C-Library File IO Routines ProvideX C-Library File IO Routines Introduction 3 PVK_open( ) 5 PVK_openEx( ) 5 PVK_close( ) 6 PVK_read( ) 6 PVK_seek( ) 7 PVK_write( ) 7 PVK_insert( ) 8 PVK_update( ) 9 PVK_remove( ) 10 PVK_getpos( )

More information

Sage Abra Alerts is designed and licensed exclusively for use with the Sage Abra HRMS database.

Sage Abra Alerts is designed and licensed exclusively for use with the Sage Abra HRMS database. Release Notes Product: Sage Abra Alerts Version: 5.1 Overview Upgrade Information Sage Abra Alerts is designed and licensed exclusively for use with the Sage Abra HRMS database. Sage requires that Sage

More information

ProvideX File System Direxions, August Presentation Overview

ProvideX File System Direxions, August Presentation Overview ProvideX File System Presented by: Brett Condy Presentation Overview New Features Summary of supported file types ProvideX KEYED files Local File Caching Performance Recovery and Repair Troubleshooting

More information

ProvideXVERSION 7. AutoUpdater

ProvideXVERSION 7. AutoUpdater ProvideXVERSION 7 AutoUpdater Introduction 1 AutoUpdater Configuration 3 How it all Works 9 The Repository File 12 Customizing the AutoUpdater 13 Trouble Shooting 14 ProvideX is a trademark of Sage Software

More information

Use an OPT="i" on the Dialogue / Window definition to create a window that does not have an Icon in its upper left corner.

Use an OPT=i on the Dialogue / Window definition to create a window that does not have an Icon in its upper left corner. JavX Version 2.5 - README File - May 2006 Release Notes for JavX SE/AE/LE Sage Software Canada Ltd 8920 Woodbine Avenue Suite 400 Markham, Ontario L3R 9W9 Tel. 905-470-1025 www.pvx.com *** NOTES *** As

More information

520 Cant empty Clipboard 521 Cant open Clipboard Expression not valid:.

520 Cant empty Clipboard 521 Cant open Clipboard Expression not valid:. The Following is a Programmers list of VB errors. Although this will not necessarily resolve your issues, it will give support an understanding as to where the potential problem is in the code. Use a Google

More information

TIBCO Spotfire Statistics Services Release Notes. Release November 2013

TIBCO Spotfire Statistics Services Release Notes. Release November 2013 TIBCO Spotfire Statistics Services Release Notes Release 6.0.0 November 2013 i Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE

More information

Amazon Redshift ODBC Driver 1.3.6

Amazon Redshift ODBC Driver 1.3.6 Amazon Redshift ODBC Driver 1.3.6 Released August 10, 2017 These release notes provide details of enhancements, features, and known issues in Amazon Redshift ODBC Driver 1.3.6, as well as the version history.

More information

Enterprise Health Manager User Manual

Enterprise Health Manager User Manual Enterprise Health Manager User Manual Introduction exacqvision Enterprise Health Manager (evehm) allows you to remotely monitor certain parameters and events on exacqvision Servers with Enterprise licenses.

More information

Red Hat JBoss Enterprise Application Platform 7.2

Red Hat JBoss Enterprise Application Platform 7.2 Red Hat JBoss Enterprise Application Platform 7.2 Patching and Upgrading Guide For Use with Red Hat JBoss Enterprise Application Platform 7.2 Last Updated: 2018-11-29 Red Hat JBoss Enterprise Application

More information

Cloudera ODBC Driver for Impala

Cloudera ODBC Driver for Impala Cloudera ODBC Driver for Impala 2.5.41 Released 2017-10-31 These release notes provide details of enhancements, features, and known issues in Cloudera ODBC Driver for Impala 2.5.41, as well as the version

More information

MapMarker Plus 14.2 Release Notes

MapMarker Plus 14.2 Release Notes MapMarker Plus 14.2 Release Notes Americas: Phone: 518 285 6000 Fax: 518 285 6070 Sales: 800 327 8627 Government Sales: 800 619 2333 Technical Support: 518 285 7283 www.mapinfo.com 2009 Pitney Bowes Software

More information

KB_SQL Release Notes Version 4.3.Q2. Knowledge Based Systems, Inc.

KB_SQL Release Notes Version 4.3.Q2. Knowledge Based Systems, Inc. KB_SQL Release Notes Version 4.3.Q2 Copyright 2003 by All rights reserved., Ashburn, Virginia, USA. Printed in the United States of America. No part of this manual may be reproduced in any form or by any

More information

ProvideX. NOMADS Enhancements

ProvideX. NOMADS Enhancements ProvideX VERSION 8.0 NOMADS Enhancements Introduction 3 Panel Designer Enhancements 5 Properties Window 7 New Format Definition for Grids/List Boxes 12 Bulk Edit Utility 14 Drag and Drop Utility 16 Dependency

More information

9.5.0 HotFix 1 Fixes... 1 Known Limitations... 2

9.5.0 HotFix 1 Fixes... 1 Known Limitations... 2 Informatica Identity Resolution Version 9.5.0 HotFix1 Release Notes September 2012 Copyright (c) 1998-2012 Informatica. All rights reserved. Contents 9.5.0 HotFix 1 Fixes... 1 Known Limitations... 2 9.5.0

More information

Application Configurator - Summary of Changes. V June No changes

Application Configurator - Summary of Changes. V June No changes Application Configurator - Summary of Changes V14.8.1 June 2018 V14.8 June 2018 - ID 11696: Install - modified to only prompt to uninstall prior version when prior version is less than V14 - ID 14890:

More information

Release is a maintenance release for Release , , , or

Release is a maintenance release for Release , , , or Oracle Essbase Studio Release 11.1.1.4.00 Readme [Skip Navigation Links] Purpose... 1 New Features... 1 New Features in Release 11.1.1.1... 2 Supported Paths to this Release... 4 Supported Platforms...

More information

Client Server Technologies

Client Server Technologies Client Server Technologies Presented by: Gord Davey Copyright 2005 Best Software Canada Ltd. All rights reserved. No part of this publication may be reproduced, or transmitted in any form or by any means,

More information

Red Hat JBoss Enterprise Application Platform 7.0

Red Hat JBoss Enterprise Application Platform 7.0 Red Hat JBoss Enterprise Application Platform 7.0 Patching and Upgrading Guide For Use with Red Hat JBoss Enterprise Application Platform 7.0 Last Updated: 2018-01-18 Red Hat JBoss Enterprise Application

More information

exacqvision Enterprise Health Manager User Manual

exacqvision Enterprise Health Manager User Manual exacqvision Enterprise Health Manager User Manual 119555 Exit 5 Pkwy Building 3 Fishers, IN 46037-7939 USA +1.317.845.5710 phone +1.317.845.5720 fax Introduction exacqvision Enterprise Health Manager (evehm)

More information

Table of Contents. Table of Contents Pivotal Greenplum Command Center Release Notes. Copyright Pivotal Software Inc,

Table of Contents. Table of Contents Pivotal Greenplum Command Center Release Notes. Copyright Pivotal Software Inc, Table of Contents Table of Contents Pivotal Greenplum Command Center 3.2.2 Release Notes 1 2 Copyright Pivotal Software Inc, 2013-2017 1 3.2.2 Pivotal Greenplum Command Center 3.2.2 Release Notes Greenplum

More information

TopView SQL Configuration

TopView SQL Configuration TopView SQL Configuration Copyright 2013 EXELE Information Systems, Inc. EXELE Information Systems (585) 385-9740 Web: http://www.exele.com Support: support@exele.com Sales: sales@exele.com Table of Contents

More information

HP NonStop Data Transformation Engine ODBC Adapter Reference Guide

HP NonStop Data Transformation Engine ODBC Adapter Reference Guide HP NonStop Data Transformation Engine ODBC Adapter Reference Guide Abstract This manual provides information about using the HP NonStop Data Transformation Engine (NonStop DTE) ODBC adapter. Product Version

More information

Dynamics ODBC REFERENCE Release 5.5a

Dynamics ODBC REFERENCE Release 5.5a Dynamics ODBC REFERENCE Release 5.5a Copyright Manual copyright 1999 Great Plains Software, Inc. All rights reserved. This document may not, in whole or in any part, be copied, photocopied, reproduced,

More information

Oracle GoldenGate for Java

Oracle GoldenGate for Java Oracle GoldenGate for Java Release Notes 11g Release 1 (11.1.1) E18170-01 August 2010 Oracle GoldenGate for Java Release Notes current to 11g Release 1 (11.1.1) E18170-01 Copyright 2008, 2009, 2010 Oracle

More information

TIBCO Spotfire Statistics Services Release Notes

TIBCO Spotfire Statistics Services Release Notes TIBCO Spotfire Statistics Services Release Notes Software Release 6.5 April 2014 Two-Second Advantage 2 Important SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED

More information

PxPlus Past and Present

PxPlus Past and Present PxPlus Past and Present Michael F. King President PVX Plus Technologies Original developer of ProvideX and PxPlus ProvideX versus PxPlus Version 9 last ProvideX Support for ProvideX will continue as long

More information

MySQL Database Administrator Training NIIT, Gurgaon India 31 August-10 September 2015

MySQL Database Administrator Training NIIT, Gurgaon India 31 August-10 September 2015 MySQL Database Administrator Training Day 1: AGENDA Introduction to MySQL MySQL Overview MySQL Database Server Editions MySQL Products MySQL Services and Support MySQL Resources Example Databases MySQL

More information

Last updated: 21/09/2017 Page 1 of 10

Last updated: 21/09/2017 Page 1 of 10 Last updated: 21/09/2017 Page 1 of 10 4.0.0 Release Date: September 2017 Major release requires updated licence. Completely redesigned to use.net throughout Added support for Subscription licencing. Added

More information

TS Network DataServer TM Reference Manual

TS Network DataServer TM Reference Manual TS Network DataServer TM Reference Manual Version 8.7.0 285 Davidson Ave., Suite 302 Somerset, NJ 08873-1453 Telephone: 732-560-1377 Outside NJ 800-524-0430 Fax: 732-560-1594 Internet address: http://www.tbred.com

More information

ibolt V3.2 SP3 Release Notes

ibolt V3.2 SP3 Release Notes ibolt V3.2 SP3 Release Notes Welcome to ibolt V3.2 SP3, which has been designed to deliver an easyto-use, flexible, and cost-effective business integration solution. This document highlights the new and

More information

AccuRev Plugin for Crucible Installation and Release Notes

AccuRev Plugin for Crucible Installation and Release Notes AccuRev Plugin for Crucible 2017.2 Installation and Release Notes Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2017. All rights

More information

MTA Database Administrator Fundamentals Course

MTA Database Administrator Fundamentals Course MTA Database Administrator Fundamentals Course Session 1 Section A: Database Tables Tables Representing Data with Tables SQL Server Management Studio Section B: Database Relationships Flat File Databases

More information

Perceptive Nolij Web. Release Notes. Version: 6.8.x

Perceptive Nolij Web. Release Notes. Version: 6.8.x Perceptive Nolij Web Release Notes Version: 6.8.x Written by: Product Knowledge, R&D Date: June 2018 Copyright 2014-2018 Hyland Software, Inc. and its affiliates. Table of Contents Perceptive Nolij Web

More information

HP D2600/D2700 Disk Enclosure I/O Module Firmware 0147 Release Notes

HP D2600/D2700 Disk Enclosure I/O Module Firmware 0147 Release Notes HP D2600/D2700 Disk Enclosure I/O Module Firmware 0147 Release Notes HP Part Number: 504224-008 Published: October 2012 Edition: 8 Copyright 2009, 2012 Hewlett-Packard Development Company, L.P. nl Version:

More information

4D v11 ODBC Driver INSTALLATION GUIDE. Installing the 4D v11 ODBC Driver

4D v11 ODBC Driver INSTALLATION GUIDE. Installing the 4D v11 ODBC Driver 4D v11 ODBC Driver INSTALLATION GUIDE Open Database Connectivity Standard (ODBC) is an open standard application programming interface (API) used to access one or more databases from a single application.

More information

Hortonworks Hive ODBC Driver with SQL

Hortonworks Hive ODBC Driver with SQL Hortonworks Hive ODBC Driver with SQL Connector 2.6.1 Released 2018-08-17 The release notes provide details of enhancements and features in Hortonworks Hive ODBC Driver with SQL Connector 2.6.1, as well

More information

MapMarker 22.1 Release Notes

MapMarker 22.1 Release Notes MapMarker 22.1 Release Notes United States: Phone: 518.285.6000 Fax: 518.285.6070 Sales: 800.327.8627 Government Sales: 800.619.2333 Technical Support: 518.285.7283 Technical Support Fax: 518.285.6080

More information

Perceptive Content. Release Notes. Version: 7.0.x

Perceptive Content. Release Notes. Version: 7.0.x Perceptive Content Release Notes Version: 7.0.x Written by: Product Knowledge, R&D Date: February 2016 2015-2016 Lexmark International Technology, S.A. All rights reserved. Lexmark is a trademark of Lexmark

More information

Simba Salesforce ODBC Driver Quickstart Guide

Simba Salesforce ODBC Driver Quickstart Guide Revised: October 8, 2013 Contents Purpose... 3 Do you need Salesforce?... 4 Do you need data in Salesforce?... 5 Install the Simba Salesforce ODBC Driver... 6 Connect from Excel... 9 Connect from Tableau...

More information

SNMP Master Agent. Release Notes 8.5.x

SNMP Master Agent. Release Notes 8.5.x SNMP Master Agent Release Notes 8.5.x 12/17/2017 Table of Contents SNMP Master Agent 8.5.x Release Note 3 Known Issues and Recommendations 5 Release 8.5.1 7 8.5.100.08 8 8.5.100.07 9 8.5.100.03 10 8.5.100.02

More information

LCE Splunk Client 4.6 User Manual. Last Revised: March 27, 2018

LCE Splunk Client 4.6 User Manual. Last Revised: March 27, 2018 LCE Splunk Client 4.6 User Manual Last Revised: March 27, 2018 Table of Contents Getting Started with the LCE Splunk Client 3 Standards and Conventions 4 Install, Configure, and Remove 5 Download an LCE

More information

PegaDISTRIBUTION MANAGER (IOS) for PegaRULES Process Commander. Installation and Configuration Guide

PegaDISTRIBUTION MANAGER (IOS) for PegaRULES Process Commander. Installation and Configuration Guide PegaDISTRIBUTION MANAGER (IOS) for PegaRULES Process Commander Installation and Configuration Guide Version 3.3.5 August 2006 Copyright 2006 Pegasystems Inc., Cambridge, MA All rights reserved. This document

More information

Installation and Configuration Guide Simba Technologies Inc.

Installation and Configuration Guide Simba Technologies Inc. Simba ServiceNow ODBC Driver with SQL Connector Installation and Configuration Guide Simba Technologies Inc. Version 1.1.1 June 30, 2017 Copyright 2017 Simba Technologies Inc. All Rights Reserved. Information

More information

TS ODBC DataServer TM Reference Manual

TS ODBC DataServer TM Reference Manual TS ODBC DataServer TM Reference Manual Version 8.8.0 46 Vreeland Drive, Suite 1 Skillman, NJ 08558-2638 Telephone: 732-560-1377 Outside NJ 800-524-0430 Fax: 732-560-1594 Internet address: http://www.tbred.com

More information

Perceptive Content. Release Notes. Version: 7.0.x

Perceptive Content. Release Notes. Version: 7.0.x Perceptive Content Release Notes Version: 7.0.x Written by: Product Knowledge, R&D Date: May 2018 2015-2017 Lexmark International Technology, S.A. All rights reserved. Lexmark is a trademark of Lexmark

More information

vrealize Operations Management Pack for vrealize Hyperic Release Notes

vrealize Operations Management Pack for vrealize Hyperic Release Notes vrealize Operations Management Pack for vrealize Hyperic Release Notes vrealize Operations Management Pack for Hyperic 6.0.1. Build No. 2470875 Last document update: 23 February 2014. Contents: New Features

More information

MapMarker USA v25.1 Release Notes

MapMarker USA v25.1 Release Notes MapMarker USA v25.1 Release Notes United States: Phone: 518.285.6000 Fax: 518.285.6070 Sales: 800.327.8627 Government Sales: 800.619.2333 Technical Support: 518.285.7283 Technical Support Fax: 518.285.6080

More information

BoKS Reporting Manager 6.7 Release Notes

BoKS Reporting Manager 6.7 Release Notes BoKS Reporting Manager 6.7 Release Notes This document contains information about the BoKS Reporting Manager 6.7 product release from Fox Technologies. It includes the following sections: Revision History

More information

Oracle Hyperion Strategic Finance, Fusion Edition. Readme File. Purpose. Release This file contains these sections:

Oracle Hyperion Strategic Finance, Fusion Edition. Readme File. Purpose. Release This file contains these sections: Oracle Hyperion Strategic Finance, Fusion Edition Release 11.1.2.0.0 Readme File This file contains these sections: Purpose... 1 New Features...... 2 Translation Support....2 System Requirements Documentation...

More information

MapMarker Plus Canada 9 Release Notes

MapMarker Plus Canada 9 Release Notes MapMarker Plus Canada 9 Release Notes Americas: Phone: 518 285 6000 Fax: 518 285 6070 Sales: 800 327 8627 Government Sales: 800 619 2333 Technical Support: 518 285 7283 www.mapinfo.com 2008 Pitney Bowes

More information

Memory may be insufficient. Memory may be insufficient.

Memory may be insufficient. Memory may be insufficient. Error code Less than 200 Error code Error type Description of the circumstances under which the problem occurred Linux system call error. Explanation of possible causes Countermeasures 1001 CM_NO_MEMORY

More information

MapMarker Plus 14.0 Release Notes

MapMarker Plus 14.0 Release Notes MapMarker Plus 14.0 Release Notes Americas: Phone: 518 285 6000 Fax: 518 285 6070 Sales: 800 327 8627 Government Sales: 800 619 2333 Technical Support: 518 285 7283 www.mapinfo.com 2008 Pitney Bowes Software

More information

MapMarker Plus 13.2 Release Notes

MapMarker Plus 13.2 Release Notes MapMarker Plus 13.2 Release Notes These Release Notes accompany the MapMarker Plus 13.2 release. This provides information on new features, behavioral changes in the software, fixes for customer-reported

More information

Setup Smart Login for Windows V2

Setup Smart Login for Windows V2 Setup Smart Login for Windows V2 Smart Login allows workstations to login to a Smart-Net server without having to join a domain. Smart Login is suitable for both laptops and desktop PC s. Features Users

More information

BMC Remedy AR System change ID utility

BMC Remedy AR System change ID utility BMC Remedy AR System change ID utility The BMC Remedy AR System change ID utility enables you to change the IDs of certain objects. This document explains the purpose and usage of the utility. The BMC

More information

Early Data Analyzer Web User Guide

Early Data Analyzer Web User Guide Early Data Analyzer Web User Guide Early Data Analyzer, Version 1.4 About Early Data Analyzer Web Getting Started Installing Early Data Analyzer Web Opening a Case About the Case Dashboard Filtering Tagging

More information

EasyCatalog For Adobe InDesign

EasyCatalog For Adobe InDesign EasyCatalog For Adobe InDesign Relational Module User Guide 65bit Software Ltd Revision History Version Date Remarks 1.0.0 02 May 2008 First draft. 1.0.1 08 August 2008 First release. Copyright 2008 65bit

More information

Charting and Reporting Now Available

Charting and Reporting Now Available Instant Archive Viewer for OCS Charting and Reporting Now Available Charting and Reporting for OCS is an XML based charting engine rendering statistics from your Office Communications Server in a cool

More information

itexamdump 최고이자최신인 IT 인증시험덤프 일년무료업데이트서비스제공

itexamdump 최고이자최신인 IT 인증시험덤프  일년무료업데이트서비스제공 itexamdump 최고이자최신인 IT 인증시험덤프 http://www.itexamdump.com 일년무료업데이트서비스제공 Exam : 1z1-882 Title : Oracle Certified Professional, MySQL 5.6 Developer Vendor : Oracle Version : DEMO Get Latest & Valid 1z1-882

More information

Micro Focus The Lawn Old Bath Road Newbury, Berkshire RG14 1QN UK

Micro Focus The Lawn Old Bath Road Newbury, Berkshire RG14 1QN UK Relativity Designer Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2015. All rights reserved. MICRO FOCUS, the Micro Focus

More information

Relativity Designer 2.2

Relativity Designer 2.2 Relativity Designer 2.2 Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2017. All rights reserved. MICRO FOCUS, the Micro Focus

More information

LAE 5.1. Release Notes. Version 1.0

LAE 5.1. Release Notes. Version 1.0 LAE 5.1 Release Notes Copyright THE CONTENTS OF THIS DOCUMENT ARE THE COPYRIGHT OF LIMITED. ALL RIGHTS RESERVED. THIS DOCUMENT OR PARTS THEREOF MAY NOT BE REPRODUCED IN ANY FORM WITHOUT THE WRITTEN PERMISSION

More information

DATA MIRROR FOR PT USER S GUIDE. Multiware, Inc. Oct 9, 2012 *Changes are in red font*

DATA MIRROR FOR PT USER S GUIDE. Multiware, Inc. Oct 9, 2012 *Changes are in red font* DATA MIRROR FOR PT USER S GUIDE Multiware, Inc. Oct 9, 2012 *Changes are in red font* Table of Contents 1. Introduction...3 2. Prerequisites...4 3. MirrorControl Class...5 3.1 Methods...5 ClearALLPTData...5

More information

MapMarker Canada 10.2 Release Notes

MapMarker Canada 10.2 Release Notes MapMarker Canada 10.2 Release Notes United States: Phone: 518.285.6000 Fax: 518.285.6070 Sales: 800.327.8627 Government Sales: 800.619.2333 Technical Support: 518.285.7283 Technical Support Fax: 518.285.6080

More information

ETERNUS SF AdvancedCopy Manager V13.3 Message Guide

ETERNUS SF AdvancedCopy Manager V13.3 Message Guide B1WW-8881-05ENZ0 (00) ETERNUS SF AdvancedCopy Manager V13.3 Message Guide ii Preface About This Manual This manual explains the messages output by ETERNUS SF AdvancedCopy Manager. Intended Reader This

More information

Conversion Guide. Introduction Welcome to the Conversion Guide... 2 Copyright & Trademarks... 2 Sales and Support... 2

Conversion Guide. Introduction Welcome to the Conversion Guide... 2 Copyright & Trademarks... 2 Sales and Support... 2 1 Conversion Guide Introduction Welcome to the Conversion Guide... 2 Copyright & Trademarks... 2 Sales and Support... 2 Conversion What is a Conversion?... 3 Key Recommendations... 3 Additional Conversion

More information

Firmware Release Notes

Firmware Release Notes Firmware Release Notes Model: M505N R2 Date: June 19 th, 2014 Firmware Release: DQ-R4B081U 1. Upgrade Bug Fix XML comparison between older Firmware, and v R4B081 treated null tags differently, causing

More information

Perceptive Nolij Web. Administrator Guide. Version: 6.8.x

Perceptive Nolij Web. Administrator Guide. Version: 6.8.x Perceptive Nolij Web Administrator Guide Version: 6.8.x Written by: Product Knowledge, R&D Date: June 2018 Copyright 2014-2018 Hyland Software, Inc. and its affiliates.. Table of Contents Introduction...

More information

FmPro Migrator. FileMaker to FileMaker 7 Quickstart Guide. .com Solutions Inc. Overview. Step 1.

FmPro Migrator. FileMaker to FileMaker 7 Quickstart Guide. .com Solutions Inc.   Overview. Step 1. FmPro Migrator for Windows.com Solutions Inc. Overview This quickstart guide provides step by step instructions for migrating individual FileMaker databases into a FileMaker 7 multi-table database structure.

More information

ProvideX The next level in business application development.

ProvideX The next level in business application development. ProvideX The next level in business application development. ProvideX from Sage Software is more than the perfect blend of powerful, intuitive, and versatile software tools. In reality, it provides a one-stop

More information

Stonesoft Management Center. Release Notes for Version 5.6.1

Stonesoft Management Center. Release Notes for Version 5.6.1 Stonesoft Management Center Release Notes for Version 5.6.1 Updated: January 9, 2014 Table of Contents What s New... 3 Fixes... 3 System Requirements... 6 Basic Management System Hardware Requirements...

More information

LAE Release Notes. Version 1.0

LAE Release Notes. Version 1.0 LAE 5.0.1 Release Notes Copyright THE CONTENTS OF THIS DOCUMENT ARE THE COPYRIGHT OF LIMITED. ALL RIGHTS RESERVED. THIS DOCUMENT OR PARTS THEREOF MAY NOT BE REPRODUCED IN ANY FORM WITHOUT THE WRITTEN PERMISSION

More information

1.1 - Added support for FORMATTED MULTI_LINEs; e.g., MULTI_LINE

1.1 - Added support for FORMATTED MULTI_LINEs; e.g., MULTI_LINE JavX SE Version 3.0 - README File - September 2009 Release Notes Sage ProvideX 8920 Woodbine Avenue Suite 400 Markham, Ontario L3R 9W9 Tel. 905-470-1025 www.pvx.com *** NOTES *** The JavX SE thin-client

More information

Installation and Configuration Guide Simba Technologies Inc.

Installation and Configuration Guide Simba Technologies Inc. Simba Spark ODBC Driver with SQL Connector Installation and Configuration Guide Simba Technologies Inc. Version 1.2.5 August 4, 2017 Copyright 2017 Simba Technologies Inc. All Rights Reserved. Information

More information

Tivoli Management Solution for Microsoft SQL. Statistics Builder. Version 1.1

Tivoli Management Solution for Microsoft SQL. Statistics Builder. Version 1.1 Tivoli Management Solution for Microsoft SQL Statistics Builder Version 1.1 Tivoli Management Solution for Microsoft SQL Statistics Builder Version 1.1 Tivoli Management Solution for Microsoft SQL Copyright

More information

IBM. Candle OMEGAMON Platform. Configuring IBM Tivoli Candle Management Server on z/os. Tivoli. Version 360 GC

IBM. Candle OMEGAMON Platform. Configuring IBM Tivoli Candle Management Server on z/os. Tivoli. Version 360 GC Tivoli Candle OMEGAMON Platform IBM Version 360 Configuring IBM Tivoli Candle Management Server on z/os GC32-9414-02 12 1 2 Tivoli Candle OMEGAMON Platform IBM Version 360 Configuring IBM Tivoli Candle

More information

7: 119 8: 151 9: : : : : : : : A

7: 119 8: 151 9: : : : : : : : A List of Chapters Chapter 1: Why Client Server? Why VFP? Why MySQL? 1 Chapter 2: Development and Deployment Scenarios 17 Chapter 3: Installing MySQL on Windows 25 Chapter 4: Installing MySQL on Linux 55

More information

Relativity for Windows Workstations

Relativity for Windows Workstations Relativity for Windows Workstations Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2015. All rights reserved. MICRO FOCUS,

More information

Relativity for Windows Workstations 2.2

Relativity for Windows Workstations 2.2 Relativity for Windows Workstations 2.2 Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2017. All rights reserved. MICRO FOCUS,

More information

Sage 300 ERP Intelligence Reporting Connector Advanced Customized Report Writing

Sage 300 ERP Intelligence Reporting Connector Advanced Customized Report Writing Sage 300 ERP Intelligence Reporting Connector Advanced Customized Report Writing Sage Intelligence Connector Welcome Notice This document and the Sage software may be used only in accordance with the accompanying

More information

Contents. Error Message Descriptions... 7

Contents. Error Message Descriptions... 7 2 Contents Error Message Descriptions.................................. 7 3 4 About This Manual This Unify DataServer: Error Messages manual lists the errors that can be produced by the Unify DataServer

More information

AirLinc Troubleshooting

AirLinc Troubleshooting AirLinc Troubleshooting Connect, Inc. 1701 Quincy Avenue, Suites 5 & 6, Naperville, IL 60540 Ph: (630) 717-7200 Fax: (630) 717-7243 www.connectrf.com Table of Contents DSN Name Changes...1 Simulator Beep...3

More information

How Actuate Reports Process Adhoc Parameter Values and Expressions

How Actuate Reports Process Adhoc Parameter Values and Expressions How Actuate Reports Process Adhoc Parameter Values and Expressions By Chris Geiss chris_geiss@yahoo.com How Actuate Reports Process Adhoc Parameter Values and Expressions By Chris Geiss (chris_geiss@yahoo.com)

More information

HPE D2600/D2700 Disk Enclosure I/O Module Firmware 0149 Release Notes

HPE D2600/D2700 Disk Enclosure I/O Module Firmware 0149 Release Notes HPE D2600/D2700 Disk Enclosure I/O Module Firmware 0149 Release Notes Part Number: 504224-011R Published: November 2015 Edition: 12 Copyright 2009, 2015 Hewlett Packard Enterprise Development LP The information

More information

Configuring Security Features on an External AAA Server

Configuring Security Features on an External AAA Server CHAPTER 3 Configuring Security Features on an External AAA Server The authentication, authorization, and accounting (AAA) feature verifies the identity of, grants access to, and tracks the actions of users

More information

Simba ODBC Driver with SQL Connector for Google

Simba ODBC Driver with SQL Connector for Google Simba ODBC Driver with SQL Connector for Google BigQuery 1.1.11 The release notes provide details of enhancements and features in Simba ODBC Driver with SQL Connector for Google BigQuery 1.1.11, as well

More information

Release Notes. MapMarker Canada. Version 15. Table of Contents. Location Intelligence Geographic Information Systems

Release Notes. MapMarker Canada. Version 15. Table of Contents. Location Intelligence Geographic Information Systems Location Intelligence Geographic Information Systems MapMarker Canada Version 15 Release Notes This Release Notes document accompanies the MapMarker Canada 15.0 release and describes new features, operating

More information

Colligo Manager for Outlook Release Notes. Release Notes

Colligo  Manager for Outlook Release Notes. Release Notes Colligo Email Manager for Outlook Release Notes Release Notes Contents About these Release Notes... 3 Audience... 3 Terminology... 3 Colligo Technical Support... 3 System Requirements... 4 Client Hardware

More information

Best practices on deployment of IBM Rational. servers

Best practices on deployment of IBM Rational. servers Best practices on deployment of IBM Rational License key server(rlks) on Linux and Unix servers Pankaj Sharma and Sombir Yadav October 21, 2015 Page 1 of 25 INTRODUCTION CONFIGURATION OF LICENSE FILE ON

More information

MySQL 5.0 Certification Study Guide

MySQL 5.0 Certification Study Guide MySQL 5.0 Certification Study Guide Paul DuBois, Stefan Hinz, and Carsten Pedersen MySQC Press 800 East 96th Street, Indianapolis, Indiana 46240 USA Table of Contents Introduction 1 About This Book 1 Sample

More information

Real-Time Monitoring Configuration Utility

Real-Time Monitoring Configuration Utility 3 CHAPTER Revised: September 17, 2012, Introduction This chapter provides an overview of the Real-time monitoring configuration, rtmcmd utility, and user configuration files. This chapter consists of these

More information

ORANET- Course Contents

ORANET- Course Contents ORANET- Course Contents 1. Oracle 11g SQL Fundamental-l 2. Oracle 11g Administration-l 3. Oracle 11g Administration-ll Oracle 11g Structure Query Language Fundamental-l (SQL) This Intro to SQL training

More information

extend Release Notes

extend Release Notes extend 9.2.5 Release Notes Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2015. All rights reserved. MICRO FOCUS, the Micro

More information

Relativity Data Server

Relativity Data Server Relativity Data Server Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2015. All rights reserved. MICRO FOCUS, the Micro Focus

More information