README for the HP ODBC Drivers for Linux and HP-UX

Size: px
Start display at page:

Download "README for the HP ODBC Drivers for Linux and HP-UX"

Transcription

1 README for the HP ODBC Drivers for Linux and HP-UX Product version: HP Neoview Release 2.0 Document Version: 1.0 Part Number: Date: March 2007 This README file describes how to install and set up the HP ODBC Drivers for Linux and HP-UX. Use these drivers to access HP Neoview SQL databases on the HP Neoview Data Warehousing Platform for Business Intelligence. For legal notices, see the end of this document. HP ODBC Drivers for Linux and HP-UX I. The Installation Package II. Installing or Reinstalling the HP ODBC Drivers for Linux and HP-UX III. Setting Up the Client Environment IV. Using a Third Party Driver Manager V. Running the Sample Program VI. Getting the Version of the Driver VII. ODBC API Reference VIII. References for Using HP ODBC Drivers for Linus and HP-UX I. The Installation Package =========================== The HP ODBC Linux and HP-UX driver software is available as downloadable distribution files on this Web site: The distribution file: (<vvv> is the version number; for example, 1.0.0) * Linux: hpodbc_<vvv>_linux_pkg.tar.gz * HP-UX(IA-64): hpodbc_<vvv>_hpux_i_pkg.tar.gz * HP-UX(PA-RISC): hpodbc_<vvv>_hpux_p_pkg.tar.gz Files contained in the distribution file: * Linux: major major libhpodbc_l.so.x.0.0 (The value of x increases with succeeding libhpodbc_drvr_l.so.x.0.0 (The value of x increases with succeeding MXODSN

2 MD5SUM sql.h sqlext.h sqltypes.h install.sh connect_test.cpp * HP-UX(IA-64): libhpodbc_i.sl.x (The value of x increases with succeeding major libhpodbc_drvr_i.sl.x (The value of x increases with succeeding major MXODSN MD5SUM sql.h sqlext.h sqltypes.h install.sh connect_test.cpp * HP-UX(PA-RISC): libhpodbc_p.sl.x (The value of x increases with succeeding major libhpodbc_drvr_p.sl.x (The value of x increases with succeeding major MXODSN MD5SUM sql.h sqlext.h sqltypes.h install.sh connect_test.cpp By default, a new version of the HP ODBC driver will be installed in these directories unless you specify different directories during installation: /usr/lib /usr/include/hpodbc /etc/hpodbc /etc/hpodbc/sample II. Installing or Reinstalling the HP ODBC Drivers for Linux and HP-UX ====================================================================== NOTE: You must have root access to install the HP ODBC drivers at the default system locations. 1. Create a temporary directory. 2. From the client workstation, start a browser and navigate to the download site:

3 3. Search for "Neoview ODBC" in the Software Depot. 4. Click the HP Neoview ODBC HP-UX LINUX Driver link that appears in the search results. 5. Depending on your need, select Linux, HP-UX Itanium, or HP-UX PA-RISC and follow the instructions to downlad the driver. 6. Move the distribution file into the temporary directory: Linux: hpodbc_<vvv>_linux_pkg.tar.gz HP-UX(IA-64): hpodbc_<vvv>_hpux_i_pkg.tar.gz HP-UX(PA-RISC): hpodbc_<vvv>_hpux_p_pkg.tar.gz 7. Expand the installation and product files: Linux: gunzip hpodbc_<vvv>_linux_pkg.tar.gz HP-UX(IA-64): gunzip hpodbc_<vvv>_hpux_i_pkg.tar.gz HP-UX(PA-RISC): gunzip hpodbc_<vvv>_hpux_p_pkg.tar.gz 8. Extract the installation and product files. A directory called PkgTmp is created. Linux: tar -xvf hpodbc_<vvv>_linux_pkg.tar HP-UX(IA-64): tar -xvf hpodbc_<vvv>_hpux_i_pkg.tar HP-UX(PA-RISC): tar -xvf hpodbc_<vvv>_hpux_p_pkg.tar 9. Install the product: cd PkgTmp./install.sh NOTE: Except for the sample file, the install.sh script saves a copy (.SAV) of your previous installation files if they exist. 10. Accept the terms of the license agreement. 11. Enter a directory for the library files, or press Enter to use the default directory (/usr/lib). 12. Enter a directory for the data source template file, or press Enter to use the default directory (/etc/hpodbc). 13. Enter a directory for the include files, or press Enter to use the default directory (/usr/include/hpodbc).

4 14. Enter a directory for the sample program, or press Enter to use the default directory (/etc/hpodbc/sample). III. Setting Up the Client Environment ====================================== If you selected default options during installation, ensure that: * The include (*.h) files are in the /usr/include/hpodbc directory. * An MXODSN file is in the /etc/hpodbc directory. NOTE: By default, the MXODSN file in the package will be installed as /etc/hpodbc/mxodsn.template. Rename it to MXODSN, and make necessary changes to the file before using the driver. * The libraries are located in the /usr/lib directory. If you selected nondefault locations during installation, ensure that the files are installed in the directories that you specified in Steps 6 to 9 in Section II of this README. NOTE: The driver expects the MXODSN file to be present in either the default location (/etc/hpodbc) or the current working directory (CWD) of the application. IV. Using a Third Party Driver Manager ====================================== * The driver (libhpodbc_drvr.so) has been verified with iodbc and unixodbc driver managers. * These drivers, as well as documentation, can be found at the following Web sites: * For information on the necessary data source configuration options you will need to add to the respective configuration files (odbc.ini), refer the the "Neoview ODBC Drivers Manager Manual" at: V. Running the Sample Program ============================== NOTE: The examples after each step assume that you have default installation directories. If you have a previous version of the hpodbc driver installed, you need to relink your existing application to ensure that you pick up the correct version of the driver. If you are unsure of the version, check the version your application with the

5 following command: ldd <object file> 1. Move to the directory where you installed the sample program: cd /etc/hpodbc/sample 2. Compile the sample program. NOTE: All drivers are 32-bit drivers; therefore,applications need to be compiled accordingly. * Linux gcc connect_test.cpp -L/usr/lib -I/usr/include/hpodbc \ -lhpodbc -o connect_test NOTE: The Linux driver is a 32-bit driver. If you are using an x86-64 machine, you need to explicitly compile your application as a 32-bit application. For example: * HP-UX(IA-64): gcc connect_test.cpp -m32 -L/usr/lib \ -I/usr/include/hpodbc -lhpodbc -o connect_test acc -AA connect_test.cpp -L/usr/lib -I/usr/include/hpodbc \ -lhpodbc -o connect_test -lm To use cc for compiling and linking, * rename connect_test.cpp to connect_test.c * cc connect_test.c -I/usr/include/hpodbc -L/usr/lib -lstd_v2\ -lcsup -lunwind -lm -lhpodbc -o connect_test * HP-UX(PA-RISC): acc -AA connect_test.cpp -L/usr/lib -I/usr/include/hpodbc \ -lhpodbc -lhppa -o connect_test -lm To use cc for compiling and linking, * rename connect_test.cpp to connect_test.c * cc connect_test.c -L/usr/lib -I/usr/include/hpodbc \ -lhppa -lstd_v2 -lcsup_v2 -lm -lhpodbc -o connect_test 3. If needed, modify the /etc/hpodbc/mxodsn file. 4. Run the sample program:./connect_test -d <datasource> -u <userid> -p <password> VI. Getting the Version of the Driver ==================================== These steps print version information on the terminal:

6 1. Move to the directory where you installed the library file of the HP ODBC driver: cd <your library home> <your library home> is the directory where you installed the library file of the HP ODBC driver. For details, see Step 6 in Section II of this README. 2. Retrieve the version string: * Linux: nm libhpodbc.so grep HPODBC or nm libhpodbc_drvr.so grep HPODBC * HP-UX(IA-64) and HP-UX(PA-RISC): nm libhpodbc.sl grep HPODBC or nm libhpodbc_drvr.sl grep HPODBC The command returns this version information: _###HPODBC <x>_<y>_<z><yymmdd> The "<x>_<y>_<z>" string is the version number (for example, 1_0_0). The "<yymmdd>" string is the date, where yy is the year, mm is the month, and dd is the day (for example, ). VII. ODBC API Reference ====================== For more information about the ODBC external specification, see the Microsoft pages: en-us/odbc/htm/dasdkodbcoverview.asp VIII. References for Using HP ODBC Drivers for Linux and HP-UX ============================================================= For more information about the HP ODBC Drivers for Linux and HP-UX, see the "Neoview ODBC Drivers Manual" at

7 Legal Notices ============= Copyright (C) 2007 Hewlett-Packard Development Company, L.P. Protected as an unpublished work. All rights reserved. The computer program listings, specifications, and documentation herein are the property of Hewlett-Packard Development Company, L.P. or a third-party supplier and shall not be reproduced, copied, disclosed, or used in whole or in part for any reason without the prior express written permission of Hewlett-Packard Development Company, L.P.

README for the HP ODBC Drivers for Linux and HP-UX

README for the HP ODBC Drivers for Linux and HP-UX README for the HP ODBC Drivers for Linux and HP-UX Product version: HP Neoview Release 1.2 Document Version: 1.0 Part Number: 543710-001 Date: 20 November 2006 This README file describes how to install

More information

Note that if the downloadable distribution file is provided to you by an HP representative, you can skip the downloading steps in this README.

Note that if the downloadable distribution file is provided to you by an HP representative, you can skip the downloading steps in this README. README for the HP ODBC Driver for Windows Product version: HP Neoview Release 1.2 Document Version: 1.0 Part Number: 543711-001 Date: 20 November 2006 This README file describes how to install and set

More information

HP Neoview ODBC Drivers Manual

HP Neoview ODBC Drivers Manual HP Neoview ODBC Drivers Manual Abstract This manual describes how to install and configure HP ODBC Drivers for Microsoft Windows, HP-UX, and Linux. The drivers enable applications developed for the Microsoft

More information

HP StorageWorks Performance Advisor. Installation Guide. Version 1.7A

HP StorageWorks Performance Advisor. Installation Guide. Version 1.7A HP StorageWorks Performance Advisor Installation Guide Version 1.7A notice Copyright 2002-2004 Hewlett-Packard Development Company, L.P. Edition 0402 Part Number B9369-96068 Hewlett-Packard Company makes

More information

HP Library and Tape Tools 4.20 Release Notes

HP Library and Tape Tools 4.20 Release Notes HP Library and Tape Tools 4.20 Release Notes Part Number: EH957-90970B Published: February 2016 Edition: 1 Copyright 2015 Hewlett-Packard Development Company, L.P. Hewlett-Packard Company makes no warranty

More information

Micro Focus Relativity Client/Server for UNIX. Installation

Micro Focus Relativity Client/Server for UNIX. Installation Micro Focus Relativity Client/Server for UNIX Installation Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2018. All rights reserved.

More information

TIBCO iprocess Objects (Java) Installation. Software Release 10.4 May 2010

TIBCO iprocess Objects (Java) Installation. Software Release 10.4 May 2010 TIBCO iprocess Objects (Java) Installation Software Release 10.4 May 2010 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE

More information

Liant Software Corporation. Relativity. Data Client for UNIX Installation Guide. Second Edition

Liant Software Corporation. Relativity. Data Client for UNIX Installation Guide. Second Edition Liant Software Corporation Relativity Data Client for UNIX Installation Guide Copyright 1994-2008 by Liant Software Corporation. All rights reserved. Printed in U.S.A. No part of this publication may be

More information

Micro Focus Relativity Data Client for UNIX. Installation

Micro Focus Relativity Data Client for UNIX. Installation Micro Focus Relativity Data Client for UNIX Installation Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2018. All rights reserved.

More information

SSL Installation Guide. Service Pack 9, July 2007

SSL Installation Guide. Service Pack 9, July 2007 SSL Installation Guide Service Pack 9, July 2007 IONA Technologies PLC and/or its subsidiaries may have patents, patent applications, trademarks, copyrights, or other intellectual property rights covering

More information

HP Internet Usage Manager Software Release Notes

HP Internet Usage Manager Software Release Notes HP Internet Usage Manager Software Release Notes Version 7.0 Manufacturing Part Number: N/A E1010 U.S.A. Copyright 2010 Hewlett-Packard Company All rights reserved. Legal Notices The information in this

More information

Contents Server Platform Support Matrix... 2

Contents Server Platform Support Matrix... 2 Compatibility Matrix CA Embedded Entitlements Manager Last updated: July 28, 2014 The document below lists the support matrix for CA Embedded Entitlements Manager (EEM). Support is limited only to the

More information

HP-UX Software and Patching Management Using HP Server Automation

HP-UX Software and Patching Management Using HP Server Automation HP-UX Software and Patching Management Using HP Server Automation Software Version 7.84, released August 2010 Overview... 2 Patch Management for HP-UX Prerequisites... 2 HP-UX Patching Features... 2 Importing

More information

Liant Software Corporation. Relativity. Client/Server for UNIX Installation Guide. Second Edition

Liant Software Corporation. Relativity. Client/Server for UNIX Installation Guide. Second Edition Liant Software Corporation Relativity Client/Server for UNIX Installation Guide Copyright 1994-2008 by Liant Software Corporation. All rights reserved. Printed in U.S.A. No part of this publication may

More information

BusinessObjects XI Release 2

BusinessObjects XI Release 2 How to configure an ODBC connection to MySQL database on Linux / UNIX Overview Contents This document describes the steps to configure an ODBC connection for a MySQL database on UNIX and Linux. OVERVIEW...

More information

version on HP-UX 11i v3 March 2014 Operating Environment Updat e Release

version on HP-UX 11i v3 March 2014 Operating Environment Updat e Release Technical white paper Installation of non-def ault VxFS and VxVM soft ware version on HP-UX 11i v3 March 2014 Operating Environment Updat e Release Table of contents Introduction... 3 Installation Instructions...

More information

HP 3PARInfo 1.4 User Guide

HP 3PARInfo 1.4 User Guide HP 3PARInfo 1.4 User Guide Abstract This guide provides information about installing and using HP 3PARInfo. It is intended for system and storage administrators who monitor and direct system configurations

More information

Liant Software Corporation. Relativity. UNIX Data Client Installation Guide. First Edition

Liant Software Corporation. Relativity. UNIX Data Client Installation Guide. First Edition Liant Software Corporation Relativity UNIX Data Client Installation Guide First Edition Copyright 1994-2005 by Liant Software Corporation. All rights reserved. Printed in U.S.A. No part of this publication

More information

TIBCO ActiveMatrix BusinessWorks Plug-in for Oracle E-Business Suite Installation. Software Release 1.1 January 2011

TIBCO ActiveMatrix BusinessWorks Plug-in for Oracle E-Business Suite Installation. Software Release 1.1 January 2011 TIBCO ActiveMatrix BusinessWorks Plug-in for Oracle E-Business Suite Installation Software Release 1.1 January 2011 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE

More information

TIBCO iprocess Workspace (Browser) Installation Guide. Software Release 11.3 May 2011

TIBCO iprocess Workspace (Browser) Installation Guide. Software Release 11.3 May 2011 TIBCO iprocess Workspace (Browser) Installation Guide Software Release 11.3 May 2011 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO

More information

TIBCO BusinessConnect ConfigStore Management Interface Protocol Installation. Software Release 1.0 February 2010

TIBCO BusinessConnect ConfigStore Management Interface Protocol Installation. Software Release 1.0 February 2010 TIBCO BusinessConnect ConfigStore Management Interface Protocol Installation Software Release 1.0 February 2010 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF

More information

Oracle Utilities Customer Care and Billing

Oracle Utilities Customer Care and Billing Oracle Utilities Customer Care and Billing Quick Install Guide Release 2.4.0 Service Pack 3 E37713-04 June 2015 Oracle Utilities Customer Care and Billing Installation Guide E37713-04 Copyright 2015 Oracle

More information

ODBC for Linux documentation. SQream Technologies Version 2.23

ODBC for Linux documentation. SQream Technologies Version 2.23 ODBC for Linux documentation SQream Technologies 2018-12-31 Version 2.23 Table of Contents 1. Prerequisites: Install UnixODBC............................................................ 1 2. Install the

More information

A9890A RAID Smart Array 6402 Controller Quick Installation Guide

A9890A RAID Smart Array 6402 Controller Quick Installation Guide A9890A RAID Smart Array 6402 Controller Quick Installation Guide Quick Installation of the Smart Array 6402 Controller Edition 1 Manufacturing Part Number: A9890-90005 March 2004 United States Copyright

More information

Configuring Embedded LDAP Authentication

Configuring Embedded LDAP Authentication HP Restricted Configuring Embedded LDAP Authentication configure Configuring Embedded LDAP Authentication For HP product models: LaserJet 4345mfp, LaserJet 9040mfp, LaserJet 9050mfp, LaserJet 9500mfp,

More information

Unix SQL Connection Option

Unix SQL Connection Option Unix SQL Connection Option This document provides instructions for installing, setting up and using the Unix SQL Connection Option. 10/20/2008 Unix SQL Connection Option 2 Table of Contents Unix SQL Connection

More information

Compatibility matrix: ServiceCenter 6.2

Compatibility matrix: ServiceCenter 6.2 Compatibility matrix: ServiceCenter 6.2 Click one of the following links to see more detailed information. Architecture diagram Servers Windows Client Web Client Compatibility between ServiceCenter clients

More information

HP Database Manager (HPDM) User Guide

HP Database Manager (HPDM) User Guide HP Database Manager (HPDM) User Guide HP Part Number: 597527-001 Published: March 2010 Edition: HP Neoview Release 2.4 Service Pack 2 Copyright 2010 Hewlett-Packard Development Company, L.P. Legal Notice

More information

hp StorageWorks Using the QLogic Driver for Single-path or Multi-path Failover Mode on Linux Systems

hp StorageWorks Using the QLogic Driver for Single-path or Multi-path Failover Mode on Linux Systems Application Notes hp StorageWorks Using the QLogic 7.00.03 Driver for Single-path or Multi-path Failover Mode on Linux Systems Product Version: 7.00.03 First Edition (May 2004) Part Number: AA RVGWA TE

More information

Using ODBC with InterSystems IRIS

Using ODBC with InterSystems IRIS Using ODBC with InterSystems IRIS Version 2018.1 2018-06-25 InterSystems Corporation 1 Memorial Drive Cambridge MA 02142 www.intersystems.com Using ODBC with InterSystems IRIS InterSystems IRIS Data Platform

More information

Installation Guide Enterprise Connect Data Access 15.7

Installation Guide Enterprise Connect Data Access 15.7 Installation Guide Enterprise Connect Data Access 15.7 Linux and UNIX DOCUMENT ID: DC39555-01-1570-01 LAST REVISED: November 2012 Copyright 2012 by Sybase, Inc. All rights reserved. This publication pertains

More information

TME 10 Reporter Release Notes

TME 10 Reporter Release Notes TME 10 Reporter Release Notes Version 2.0 April, 1997 TME 10 Reporter (April 1997) Copyright Notice Copyright 1991, 1997 by Tivoli Systems, an IBM Company, including this documentation and all software.

More information

HP-UX DCE v2.0 Application Development Tools Release Notes

HP-UX DCE v2.0 Application Development Tools Release Notes HP-UX DCE v2.0 Application Development Tools Release Notes HP-UX 11i v3 Version 2.0 Manufacturing Part Number: 5991-7724 February 2007 U.S.A. Copyright 2007 Hewlett-Packard Development Company L.P. All

More information

Licensed Program Specifications

Licensed Program Specifications Licensed Program Specifications Tivoli Storage Manager, S/390 Edition Version 4 Release 2 Program Number 5697-TS9 Tivoli 1 Storage Manager, S/390 2 Edition, is an advanced storage management solution now

More information

RTI Persistence Service. Installation Guide

RTI Persistence Service. Installation Guide RTI Persistence Service Installation Guide Version 5.1.0 2007-2013 Real-Time Innovations, Inc. All rights reserved. Printed in U.S.A. First printing. December 2013. Trademarks Real-Time Innovations, RTI,

More information

Applied Informatics POCO PRO C++ Frameworks

Applied Informatics POCO PRO C++ Frameworks Applied Informatics POCO PRO C++ Frameworks Getting Started Guide Version 1.10 Purpose of This Document This document guides developers interested in the POCO PRO C++ Frameworks by Applied Informatics

More information

HP Serviceguard Quorum Server Version A Release Notes, Fourth Edition

HP Serviceguard Quorum Server Version A Release Notes, Fourth Edition HP Serviceguard Quorum Server Version A.02.00 Release Notes, Fourth Edition Manufacturing Part Number: B8467-90026 Reprinted December 2005 Legal Notices Copyright 2005 Hewlett-Packard Development Company,

More information

DataTAG Advance Reservation WP2 Database Management in GARA

DataTAG Advance Reservation WP2 Database Management in GARA DataTAG Advance Reservation WP2 Installation and Configuration Manual Network reservation in Gara With database MySQL/MyODBC 1 Installation and Configuration Manual... 1 1.1 Introduction... 3 1.2 Packages

More information

MSA1500csReleaseNotes8_ txt MSA1500cs ReleaseNotes. hp StorageWorks Modular Smart Array 1500 cs Release Notes. Third Edition (February 2005)

MSA1500csReleaseNotes8_ txt MSA1500cs ReleaseNotes. hp StorageWorks Modular Smart Array 1500 cs Release Notes. Third Edition (February 2005) MSA1500cs ReleaseNotes hp StorageWorks Modular Smart Array 1500 cs Release Notes Third Edition (February 2005) Publication of the third edition of this document coincides with the release of MSA1500 cs

More information

Web Enablement Kit Implementation Guide

Web Enablement Kit Implementation Guide Content Manager OnDemand for Multiplatforms Version 8 Release 5 Web Enablement Kit Implementation Guide SC19-2941-00 Content Manager OnDemand for Multiplatforms Version 8 Release 5 Web Enablement Kit

More information

Enabling High Availability for SOA Manager

Enabling High Availability for SOA Manager Enabling High Availability for SOA Manager Abstract... 2 Audience... 2 Introduction... 2 Prerequisites... 3 OS/Platform... 3 Cluster software... 4 Single SOA Manager Server Fail Over... 4 Setting up SOA

More information

Guest Management Software V2.0.2 Release Notes

Guest Management Software V2.0.2 Release Notes Guest Management Software V2.0.2 Release Notes Abstract These release notes provide important release-related information for GMS (Guest Management Software) Version 2.0.2. GMS V2.0.2 is MSM software version

More information

SiteScope Adapter for HP OpenView Operations

SiteScope Adapter for HP OpenView Operations SiteScope Adapter for HP OpenView Operations for the UNIX and Windows Operating System Software Version: 1.00, 1.01 User s Guide Document Release Date: 24 November 2009 Software Release Date: December

More information

Configuring Informix Linux Client for Connectivity from Team Developer By Ana Paula Bonani Technical Support Engineer

Configuring Informix Linux Client for Connectivity from Team Developer By Ana Paula Bonani Technical Support Engineer Configuring Informix Linux Client for Connectivity from Team Developer 2005.1 By Ana Paula Bonani Technical Support Engineer November, 2005 Abstract... 3 Introduction... 3 Configuring unixodbc... 4 Configuring

More information

HP StorageWorks Using the QLogic HBA Driver for Single-path or Multi-path Failover Mode on Linux Systems

HP StorageWorks Using the QLogic HBA Driver for Single-path or Multi-path Failover Mode on Linux Systems Application Notes HP StorageWorks Using the QLogic HBA Driver for Single-path or Multi-path Failover Mode on Linux Systems Product Version: 8.00 Second Edition (January 2005) Part Number: AA RVGWC TE This

More information

Topaz for Java Performance Installation Guide. Release 16.03

Topaz for Java Performance Installation Guide. Release 16.03 Topaz for Java Performance Installation Guide Release 16.03 ii Topaz for Java Performance Installation Guide Please direct questions about Topaz for Java Performance or comments on this document to: Topaz

More information

Installation and Configuration Guide Simba Technologies Inc.

Installation and Configuration Guide Simba Technologies Inc. Simba ODBC Driver with SQL Connector for Google BigQuery Installation and Configuration Guide Simba Technologies Inc. Version 2.1.20 November 30, 2018 Copyright 2018 Simba Technologies Inc. All Rights

More information

HP Project and Portfolio Management Center

HP Project and Portfolio Management Center HP Project and Portfolio Management Center Software Version: 8.00 Generating Fiscal Periods Document Release Date: July 2009 Software Release Date: July 2009 Legal Notices Warranty The only warranties

More information

HPE StoreVirtual OS Update Guide

HPE StoreVirtual OS Update Guide HPE StoreVirtual OS Update Guide Abstract This guide is intended for system administrators who are responsible for updating to the latest versions of software for StoreVirtual storage. Part Number: 865551-002

More information

Compatibility matrix: HP Service Manager Software version 7.00

Compatibility matrix: HP Service Manager Software version 7.00 Compatibility matrix: HP Service Manager Software version 7.00 Click one of the following links to see more detailed information. Servers Windows Client Web Client Compatibility between Service Manager

More information

FORCHECK HP-UX. for. A Fortran Verifier and Programming Aid. Installation Guide. version 14

FORCHECK HP-UX. for. A Fortran Verifier and Programming Aid. Installation Guide. version 14 FORCHECK for HP-UX A Fortran Verifier and Programming Aid version 14 Installation Guide January 22, 2011 2 The information in this document is subject to change without previous notice and should not be

More information

HP AutoPass License Server

HP AutoPass License Server HP AutoPass License Server Software Version: 9.0 Windows, Linux and CentOS operating systems Support Matrix Document Release Date: October 2015 Software Release Date: October 2015 Page 2 of 10 Legal Notices

More information

HP Neoview Performance Analysis Tools

HP Neoview Performance Analysis Tools HP Neoview Performance Analysis Tools HP Part Number: 586321-001 Published: September 2009 Edition: HP Neoview Release 2.4 Service Pack 1 Copyright 2009 Hewlett-Packard Development Company, L.P. Table

More information

TIBCO FTL Installation

TIBCO FTL Installation TIBCO FTL Installation Software Release 5.2 March 2017 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE

More information

Product Release Note. for. SFTPPlus Client 1.5

Product Release Note. for. SFTPPlus Client 1.5 Product Release Note for SFTPPlus Client 1.5 1.5.1.1 The Old Exchange South Cadbury Yeovil Somerset BA22 7ET UK Copyright: 2009. Neither the whole nor any part of this Document may be reproduced or transmitted,

More information

Installation Guide V1.1

Installation Guide V1.1 Installation Guide V1.1 The information contained in this manual is the licensed property of Fujitsu Software Technology Corporation. Use of the information contained herein is restricted to the terms

More information

AlliedView -EMS 4.0 INSTALLATION GUIDE

AlliedView -EMS 4.0 INSTALLATION GUIDE AlliedView -EMS 4.0 INSTALLATION GUIDE AlliedView -EMS 4.0 INSTALLATION GUIDE Page 1 of 29 TABLE OF CONTENTS 1 INTRODUCTION...3 2 SYSTEM REQUIREMENTS...3 2.1 WINDOWS... 3 2.2 SOLARIS... 3 2.3 HP-UX...

More information

TIBCO FTL Message Switch Installation

TIBCO FTL Message Switch Installation TIBCO FTL Message Switch Installation Software Release 5.0.0 June 2016 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED

More information

Linux Quick Installation Guide

Linux Quick Installation Guide 2009 Aradial This document contains proprietary and confidential information of Aradial and shall not be reproduced or transferred to other documents, disclosed to others, or used for any purpose other

More information

EMC NetWorker Module for SAP

EMC NetWorker Module for SAP EMC NetWorker Module for SAP Version 9.0.x Installation Guide 302-001-789 REV 04 Copyright 2009-2017 Dell Inc. or its subsidiaries. All rights reserved. Published February 2017 Dell believes the information

More information

Network Management Utility

Network Management Utility 4343-7705-02 Network Management Utility Foreword Welcome Network Management Utility is utility software that provides central control over printers, copiers, and other devices on a network. With Network

More information

Deploying HP SIM 6.x on MSCS Clusters on Windows 2008 with SQL Server 2005 White Paper

Deploying HP SIM 6.x on MSCS Clusters on Windows 2008 with SQL Server 2005 White Paper Deploying HP SIM 6.x on MSCS Clusters on Windows 2008 with SQL Server 2005 White Paper Subtitle Table of Contents Abstract... 2 Introduction... 2 Installing HP SIM on Windows 2008 failover cluster with

More information

Location Intelligence Geographic Information Systems. MapMarker Plus. Version 30. Installation Guide

Location Intelligence Geographic Information Systems. MapMarker Plus. Version 30. Installation Guide Location Intelligence Geographic Information Systems MapMarker Plus Version 30 Installation Guide Information in this document is subject to change without notice and does not represent a commitment on

More information

Sagent Data Flow Solution. Version 6.8 INSTALLATION GUIDE

Sagent Data Flow Solution. Version 6.8 INSTALLATION GUIDE Sagent Data Flow Solution Version 6.8 INSTALLATION GUIDE Information in this document is subject to change without notice and does not represent a commitment on the part of the vendor or its representatives.

More information

Backing up and restoring HP Systems Insight Manager 6.0 or greater data files in a HP-UX and Linux environment White Paper

Backing up and restoring HP Systems Insight Manager 6.0 or greater data files in a HP-UX and Linux environment White Paper Backing up and restoring HP Systems Insight Manager 6.0 or greater data files in a HP-UX and Linux environment White Paper Table of Contents Introduction... 2 Backing up and restoring data files for a

More information

Virtual Recovery Assistant user s guide

Virtual Recovery Assistant user s guide Virtual Recovery Assistant user s guide Part number: T2558-96323 Second edition: March 2009 Copyright 2009 Hewlett-Packard Development Company, L.P. Hewlett-Packard Company makes no warranty of any kind

More information

Dell EMC NetWorker Module for Databases and Applications

Dell EMC NetWorker Module for Databases and Applications Dell EMC NetWorker Module for Databases and Applications Version 9.2 Installation Guide 302-003-817 REV 02 Copyright 2009-2018 Dell Inc. or its subsidiaries. All rights reserved. Published July 2018 Dell

More information

Installation and Configuration Guide Simba Technologies Inc.

Installation and Configuration Guide Simba Technologies Inc. Simba SQL Server ODBC Driver Installation and Configuration Guide Simba Technologies Inc. Version 1.4.13 November 22, 2018 Copyright 2018 Simba Technologies Inc. All Rights Reserved. Information in this

More information

HP-UX Support Tools Manager (STM) Release Notes

HP-UX Support Tools Manager (STM) Release Notes HP-UX Support Tools Manager (STM) Release Notes HP-UX 11i v3 Version: B.11.31.24.02 Part Number: 820365-002 Published: June 2016 Edition: 1 Copyright 2016 Hewlett Packard Enterprise Development LP The

More information

HP OpenVMS Operations Manager HTTPS Agents Version 8.6 Administrator's Guide

HP OpenVMS Operations Manager HTTPS Agents Version 8.6 Administrator's Guide HP OpenVMS Operations Manager HTTPS Agents Version 8.6 Administrator's Guide Copyright 2010 Hewlett-Packard Development Company, L.P. Confidential computer software. Valid license from HP required for

More information

Core Services SSL Installation Guide. Service Pack 9, July 2007

Core Services SSL Installation Guide. Service Pack 9, July 2007 Core Services SSL Installation Guide Service Pack 9, July 2007 IONA Technologies PLC and/or its subsidiaries may have patents, patent applications, trademarks, copyrights, or other intellectual property

More information

Network Guide. IMPORTANT: Read this manual carefully before using your printer. Save this manual for future reference. ENG

Network Guide. IMPORTANT: Read this manual carefully before using your printer. Save this manual for future reference. ENG Network Guide IMPORTANT: Read this manual carefully before using your printer. Save this manual for future reference. ENG Network Guide How This Manual Is Organized Chapter 1 Before You Start Chapter 2

More information

ServerStatus Installation and Operation Manual

ServerStatus Installation and Operation Manual ServerStatus Installation and Operation Manual Capitalware Inc. Unit 11, 1673 Richmond Street, PMB524 London, Ontario N6G2N3 Canada sales@capitalware.com http://www.capitalware.com ServerStatus Installation

More information

HPE Security Fortify Plugins for Eclipse Software Version: Installation and Usage Guide

HPE Security Fortify Plugins for Eclipse Software Version: Installation and Usage Guide HPE Security Fortify Plugins for Eclipse Software Version: 16.10 Installation and Usage Guide Document Release Date: April 2016 Software Release Date: April 2016 Legal Notices Warranty The only warranties

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 7.51 HP SiteScope Integration Guide Document Release Date: August 2009 Software Release Date: August 2009 Legal Notices Warranty The only warranties

More information

HP Web Jetadmin 8.0 Credential Store Feature

HP Web Jetadmin 8.0 Credential Store Feature HP Web Jetadmin 8.0 Credential Store Feature Table of Contents: Overview...1 The Credential Store...1 Interacting with the Credential Store...2 Configuration of Device Credentials...2 Example...3 Credential

More information

System Administration Certifications

System Administration Certifications System Administration Certifications Certified Systems Administrat Prerequisites Minimum six months experience in the IT industry Courses HP-UX System & Netwk Administration f Experienced UNIX System Administrats

More information

Artix Version Installation Guide: Java

Artix Version Installation Guide: Java Artix Version 5.6.4 Installation Guide: Java Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2017. All rights reserved. MICRO FOCUS,

More information

DtS Data Migration to the MSA1000

DtS Data Migration to the MSA1000 White Paper September 2002 Document Number Prepared by: Network Storage Solutions Hewlett Packard Company Contents Migrating Data from Smart Array controllers and RA4100 controllers...3 Installation Notes

More information

RTI Data Distribution Service

RTI Data Distribution Service RTI Data Distribution Service Getting Started Guide Addendum for Database Setup Version 4.5 The Global Leader in DDS 2010-2011 Real-Time Innovations, Inc. All rights reserved. Printed in U.S.A. First printing.

More information

Introduction to Linux. Woo-Yeong Jeong Computer Systems Laboratory Sungkyunkwan University

Introduction to Linux. Woo-Yeong Jeong Computer Systems Laboratory Sungkyunkwan University Introduction to Linux Woo-Yeong Jeong (wooyeong@csl.skku.edu) Computer Systems Laboratory Sungkyunkwan University http://csl.skku.edu What is Linux? A Unix-like operating system of a computer What is an

More information

Workplace Designer. Installation and Upgrade Guide. Version 2.6 G

Workplace Designer. Installation and Upgrade Guide. Version 2.6 G Workplace Designer Version 2.6 for Windows, Linux, AIX, Solaris, iseries Installation and Upgrade Guide G210-2219-01 Note Before using this information and the product it supports, read the information

More information

HP Storage Manager User Guide. May 2005 (First Edition) Part Number

HP Storage Manager User Guide. May 2005 (First Edition) Part Number HP Storage Manager User Guide May 2005 (First Edition) Part Number 394897-001 Copyright 2005 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

More information

Introduction to Linux

Introduction to Linux Introduction to Linux Prof. Jin-Soo Kim( jinsookim@skku.edu) TA - Kisik Jeong (kisik@csl.skku.edu) Computer Systems Laboratory Sungkyunkwan University http://csl.skku.edu What is Linux? A Unix-like operating

More information

Backing Up and Restoring HP Systems Insight Manager 7.2 or Greater Data Files in an HP-UX and Linux Environment

Backing Up and Restoring HP Systems Insight Manager 7.2 or Greater Data Files in an HP-UX and Linux Environment White paper Backing Up and Restoring HP Systems Insight Manager 7.2 or Greater Data Files in an HP-UX and Linux Environment HP Systems Insight Manager 7.2 Table of Contents Introduction... 3 Backing up

More information

Linux Essentials. Smith, Roderick W. Table of Contents ISBN-13: Introduction xvii. Chapter 1 Selecting an Operating System 1

Linux Essentials. Smith, Roderick W. Table of Contents ISBN-13: Introduction xvii. Chapter 1 Selecting an Operating System 1 Linux Essentials Smith, Roderick W. ISBN-13: 9781118106792 Table of Contents Introduction xvii Chapter 1 Selecting an Operating System 1 What Is an OS? 1 What Is a Kernel? 1 What Else Identifies an OS?

More information

Hitachi Provisioning Manager Software Release Notes

Hitachi Provisioning Manager Software Release Notes Hitachi Manager Software 6.4.0-03 Release Notes Table of Contents About This Document... 1 Intended Audience... 1 Getting Help... 1 About This Release... 2 Product Package Contents... 2 New Features and

More information

Avigilon Control Center 6 System Integration Guide

Avigilon Control Center 6 System Integration Guide Avigilon Control Center 6 System Integration Guide for Paxton Net2 Access Control Systems 2018, Avigilon Corporation. All rights reserved. AVIGILON, the AVIGILON logo, AVIGILON CONTROL CENTER and ACC are

More information

Veritas System Recovery 16 Management Solution Readme

Veritas System Recovery 16 Management Solution Readme Veritas System Recovery 16 Management Solution Readme About this readme System requirements for software delivery policies of Veritas System Recovery 16 System requirements for Veritas System Recovery

More information

2 Latest Upgrade Information

2 Latest Upgrade Information Oracle Database Release Notes 11g Release 2 (11.2) for HP-UX E23561-06 December 2013 This document contains information that was not included in the platform-specific or product-specific documentation

More information

Oracle Enterprise Taxation Management

Oracle Enterprise Taxation Management Oracle Enterprise Taxation Management Quick Install Guide Version 2.2.0 SP2 E13883-01 April 2010 Oracle Enterprise Taxation Management Quick Install Guide E13883-01 Copyright 2000, 2010, Oracle and/or

More information

HP StorageWorks SmartStart EVA Storage 3.2 Release Notes

HP StorageWorks SmartStart EVA Storage 3.2 Release Notes HP StorageWorks SmartStart EVA Storage 3.2 Release Notes Part Number: T5505-96034 Second edition: June 2010 Legal and notice information Copyright 2010 Hewlett-Packard Development Company, L.P. Microsoft

More information

HPE Operations Bridge Reporter

HPE Operations Bridge Reporter HPE Operations Bridge Reporter Software Version: 10.21 Windows and Linux operating systems Disaster Recovery Guide Document Release Date: October 2017 Software Release Date: August 2017 Legal Notices Warranty

More information

Upgrade Guide 6.0. Version 6.0 Software Installation and Upgrade Guide

Upgrade Guide 6.0. Version 6.0 Software Installation and Upgrade Guide Software Installation Stratum.Server and Upgrade Guide 6.0 Version 6.0 Software Installation and Upgrade Guide From Silvon s Library MANUAL DOCUMENT NAME Stratum.Server 6.0 Software Installation and Upgrade

More information

v7.0 HP Intelligent Management Center MySQL 5.6 Installation and Configuration Guide (for Linux)

v7.0 HP Intelligent Management Center MySQL 5.6 Installation and Configuration Guide (for Linux) v7.0 HP Intelligent Management Center MySQL 5.6 Installation and Configuration Guide (for Linux) Abstract This document is intended to be the installation and configuration guide for MySQL in addition

More information

HP Web Jetadmin Report Generation Plug-in

HP Web Jetadmin Report Generation Plug-in HP Web Jetadmin Report Generation Plug-in HP Web Jetadmin Report Generation Plug-in Reference Manual Copyright notice 2006 Copyright Hewlett-Packard Development Company, L.P. Reproduction, adaptation

More information

HP Intelligent Management Center v7.1

HP Intelligent Management Center v7.1 HP Intelligent Management Center v7.1 iar Quick Start Guide Part number: 5998-6863 Published: September 2014 Software Version: IMC PLAT 7.1 (E0302) Edition: 1.0 Legal and notice information Copyright 2014

More information

HP ALM Client MSI Generator

HP ALM Client MSI Generator HP ALM Client MSI Generator Software Version: 1.00 User Guide Document Release Date: October 2010 Software Release Date: October 2010 Legal Notices Warranty The only warranties for HP products and services

More information

MAS 90 MAS 200 Extended Solution User ID Password Expiration LM-1016

MAS 90 MAS 200 Extended Solution User ID Password Expiration LM-1016 MAS 90 MAS 200 Extended Solution User ID Password Expiration LM-1016 Overview This Extended Solution to the standard MAS 90 MAS 200 Library Master module adds the ability to define a time limit for User

More information

NI-VISA for Solaris 1.x and 2.x SUN and GSUN Frameworks

NI-VISA for Solaris 1.x and 2.x SUN and GSUN Frameworks NATIONAL INSTRUMENTS The Software is the Instrument Read Me First Save this document for future reference. VXIplug&play Software Kit NI-VISA for Solaris 1.x and 2.x SUN and GSUN Frameworks Thank you for

More information