HPE Vertica Integration with Tungsten: Connection Guide

Size: px
Start display at page:

Download "HPE Vertica Integration with Tungsten: Connection Guide"

Transcription

1 HPE Vertica Analytic Database

2 Legal Notices Warranty The only warranties for Hewlett Packard Enterprise products and services are set forth in the express warranty statements accompanying such products and services. Nothing herein should be construed as constituting an additional warranty. Hewlett Packard Enterprise shall not be liable for technical or editorial errors or omissions contained herein. The information contained herein is subject to change without notice. Restricted Rights Legend Confidential computer software. Valid license from Hewlett Packard Enterprise required for possession, use or copying. Consistent with FAR and , Commercial Computer Software, Computer Software Documentation, and Technical Data for Commercial Items are licensed to the U.S. Government under vendor's standard commercial license. Copyright Notice Copyright 2015 Hewlett Packard Enterprise Development L.P. Trademark Notices Adobe is a trademark of Adobe Systems Incorporated. Microsoft and Windows are U.S. registered trademarks of Microsoft Corporation. UNIX is a registered trademark of The Open Group. This product includes an interface of the 'zlib' general purpose compression library, which is Copyright Jean-loup Gailly and Mark Adler. Copyright 2015 Hewlett Packard Enterprise Development LP. Page 2

3 Table of Contents About Vertica Connection Guides... 4 Tungsten Replicator Overview... 4 Replication to Vertica... 4 Download and Install Tungsten... 5 Download and Install the Vertica Client Drivers... 5 Download Vertica Client Drivers... 6 Install Vertica Client Drivers... 6 Set up MySQL to Vertica Replication... 6 Configure Hosts... 6 Prepare Schemas in Vertica... 6 Install Vertica Replication... 7 Monitor Vertica Deployment... 9 Test MySQL with Vertica Replication Example: Use the SimpleBatchApplier Known Limitations Data Type Mapping: MySQL to Vertica For More Information...15 Copyright 2015 Hewlett Packard Enterprise Development LP. Page 3

4 About Vertica Connection Guides HPE Vertica connection guides provide basic information about setting up connections to Vertica from software that our technology partners create. These documents provide guidance using one specific version of Vertica and one specific version of the third party vendor s software. Other versions of the third-party product may work with Vertica. However, Hewlett Packard Enterprise may not have tested these other versions. This document provides guidance using the latest versions of Vertica and Tungsten as of. Tungsten Replicator Overview The Tungsten Replicator is an open source replication engine that supports many different extractor and applier modules. Data can be extracted from MySQL and Oracle, and applied to transactional stores. Data can also be applied to NoSQL stores such as MongoDB, and data warehouse stores such as Vertica. The core of the replication functionality lies in three major components: Transaction History Log (THL): The THL is the data that Tungsten takes from the master's binary logs and transports to its servers, with the addition of some metadata. Extractor: The extractor component reads data from the source data server and writes that information to the Transaction History Log (THL). The extractor is also responsible for writing the data into the THL in the native or derived format either as a SQL statement or as row-based information. Applier: Appliers within the Tungsten Replicator convert the THL information and write it to a destination data server. The applier has the capability to work with a number of different target databases, such as Vertica or MySQL. This document demonstrates how users can replicate data from MySQL to Vertica using Tungsten. Tungsten uses the JDBC driver to connect to Vertica. This document provides the replication mechanism from MySQL 5.6 to Vertica 7.2.x using Tungsten 4.0. Hewlett Packard Enterprise has tested Vertica 7.1.x and 7.2.x with Tungsten on a Linux platform. Replication to Vertica In heterogeneous systems, it is not possible to execute the DDL and DML statements from source systems into target systems because the SQL dialects are different. Tungsten uses row-based replication when performing replication from MySQL to Vertica. Replication to Vertica follows this flow: Copyright 2015 Hewlett Packard Enterprise Development LP. Page 4

5 Data is extracted from the source database into the THL. While extracting data from the THL, the Tungsten Replicator writes the data into CSV files based on the names of the source tables. These files contain all of the row-based data, including the unique global transaction ID generated by the Tungsten Replicator during replication. The operation type (Insert or Delete) is also listed as part of the CSV file. Vertica loads the CSV files into staging tables. Tungsten executes SQL statements to perform updates on live versions of the tables. The statements use the CSV, batch-loaded information to delete old rows and insert new data into tables. The statements also perform updates as necessary to work effectively with Vertica. Download and Install Tungsten Follow these steps to download and install the Tungsten Replicator. 1. Download the software for Tungsten Unpack the file into the Tungsten Replicator deployment directory using the following command: Tungsten: shell > $>tar xvf tungsten-replicator tar.gz Download and Install the Vertica Client Drivers Before you can connect to Vertica using Tungsten, you must install the Vertica client package. This package includes the JDBC client driver that Tungsten uses to connect to Vertica. Copyright 2015 Hewlett Packard Enterprise Development LP. Page 5

6 Download Vertica Client Drivers 1. Go to the Vertica Client Drivers page. 2. Download the version of the Vertica client package that is compatible with the architecture of your operating system and Vertica server version. Note: Vertica drivers are forward compatible, so you can connect to the Vertica server using previous versions of the client. For more information about client and server compatibility, see Client Driver and Server Version Compatibility in the Vertica documentation. Install Vertica Client Drivers Based on the client package you downloaded, follow the steps for installation from the Vertica documentation. Copy the Vertica JDBC driver into the Tungsten Replicator deployment directory: <Tungsten_Home>/tungsten-replicator /tungstenreplicator/lib Set up MySQL to Vertica Replication Before you begin, you must configure the staging host that is responsible for setting up the replication services involved in the replication process. For details on configuring the staging host, see Staging Host Configuration in the Tungsten documentation. Configure Hosts MySQL uses row-based replication to replicate data to Vertica. You must create tables that need to be replicated in Vertica; tables are not automatically created. You must use the ddlscan utility to create tables for replication. To prepare the MySQL and Vertica hosts, follow the steps in Preparing Hosts for Vertica Deployments. Prepare Schemas in Vertica The Tungsten Replicator does not prepare target database schemas and tables based on the source database. The Tungsten Replicator includes a tool called the ddlscan, which reads the schema definition from MySQL and translates that information into the schema definition required for the target database. You should prepare the source database tables you want to replicate to Vertica and then prepare table definitions for your Vertica database. Follow these steps to create schema and tables for the staging tables and target tables: 1. Create a table in MySQL using the following command: Copyright 2015 Hewlett Packard Enterprise Development LP. Page 6

7 mysql -utungsten DBNAME... mysql> CREATE TABLE Char1_Table(Id int primary key, 2. Execute the ddlscan tool twice. DataTypeSet VARCHAR (20) 'Char1', ValueDesc VARCHAR (50), Char1_Column CHAR ); default charset=utf8; Shell $> cd <Tungsten_Home>/tungsten-replicator /tungsten-replicator/samples/extensions/velocity The first time generates the live table definitions: Tungsten: shell $> /<Tungsten_Home>//tungsten-replicator /tungsten-replicator/bin/ddlscan -user tungsten url jdbc:mysql:thin://host1:3306/dbname -pass password -template ddl-mysql-vertica.vm -db DBNAME >>ddl.sql The second time creates the table definitions for the staging data using the staging template: Tungsten: shell $> /<Tungsten_Home>//tungsten-replicator /tungsten-replicator/bin/ddlscan -user tungsten url jdbc:mysql:thin://host1:3306/dbname -pass password -template ddl-mysql-vertica-staging.vm -db DBNAME >>ddl.sql 3. Edit ddl.sql file and update this file according to the target database. 4. Execute the Vertica database using the following command: dbadmin: shell $> vsql U dbadmin w <PASSWORD> <ddl.sql Install Vertica Replication 1. Change to the staging directory using the following command: Tungsten: shell $> cd <Tungsten_Home>/ tungsten-replicator Configure the main parameters for the replicator service: Tungsten: shell $>./tools/tpm configure alpha \ --master=host1 \ --members=host1, host2 \ --install-directory=/opt/continuent \ --disable-relay-logs=true \ --skip-validation-check=hostsfilecheck \ Copyright 2015 Hewlett Packard Enterprise Development LP. Page 7

8 --enable-heterogenous-service=true \ --start 3. Configure and install the MySQL Master: Tungsten: shell $>./tools/tpm update alpha\ --master=host1 \ --hosts=host1 \ --datasource-host=host1 \ --datasource-user=tungsten \ --datasource-password=password \ --datasource-mysql-conf=/usr/my.cnf \ --home-directory=/opt/continuent \ --java-file-encoding=utf8 \ --java-user-timezone=gmt \ --svc-extractor-filters=colnames,pkey \ -- property=replicator.filter.pkey.addcolumnstodeletes=true \ -- property=replicator.filter.pkey.addpkeytoinserts=true \ --mysql-use-bytes-for-string=false \ --start-and-report Note: The preceding command has some essential settings that help with heterogeneous replication: The Java VM file encoding and time zone are UTF-8 and GMT, respectively. Standardizing these values is required to avoid corrupting data in batch loads. Tungsten translates string values to UTF-8 rather than passing these values to slaves as bytes. Tungsten inserts filters to add column names and identify the primary key on tables. These additions are required for batch loading to work properly. 4. Configure and install the Vertica slave server: Tungsten: shell $>./tools/tpm update alpha \ --hosts=host2 \ --replication-user=dbadmin \ --replication-password=password \ --batch-enabled=true \ Copyright 2015 Hewlett Packard Enterprise Development LP. Page 8

9 --batch-load-language=js \ --batch-load-template=vertica6 \ --datasource-type=vertica \ --vertica-dbname=dbname \ --replication-host=host2 \ --replication-port=5433 \ --skip-validation-check=installermasterslavecheck \ --svc-applier-block-commit-size=25000 \ --svc-applier-block-commit-interval=30s \ --start-and-report Monitor Vertica Deployment Monitoring a Vertica replication scenario requires checking the status of both the master, which extracts data from MySQL, and the slave, which retrieves the remote THL information and applies it to Vertica. Copyright 2015 Hewlett Packard Enterprise Development LP. Page 9

10 The following graphic shows the master server. The output of the trepctl shows the current sequence number and applier status. The following graphic shows the slave server. The output of the trepctl shows the current sequence number and applier status. Copyright 2015 Hewlett Packard Enterprise Development LP. Page 10

11 Test MySQL with Vertica Replication To replicate data, you need a table on MySQL to hold some data. Follow these steps to test MySQL with Vertica using the Tungsten Replicator. The following example shows how to move a row from one table to another: 1. Log in to MySQL and insert a row: mysql -utungsten DBNAME... mysql> INSERT INTO Char1_Table VALUES(1,default, 'Empty', ''); Query OK, 1 row affected (0.00 sec) mysql> INSERT INTO Char1_Table VALUES(2,default, 'Typical', 'a'); Query OK, 1 row affected (0.00 sec) mysql> INSERT INTO Char1_Table VALUES(3,default, 'Max', 'Z'); Copyright 2015 Hewlett Packard Enterprise Development LP. Page 11

12 Query OK, 1 row affected (0.00 sec) 2. If you configured things properly, you should see the following on the Vertica side: dbadmin=> SELECT * from tungsten.char1_table; Id DataTypeSet ValueDesc Char1_Column default Empty 2 default Typical a 3 default Max Z (3 rows) Example: Use the SimpleBatchApplier The Tungsten Replicator applies data to Vertica using a new applier class called the SimpleBatchApplier. It implements the CSV files through the following process: 1. As new transactions arrive, the Replicator writes them to CSV files named after the corresponding Vertica tables. For example, if you have updates for a table named simple_tab in a schema test, the format would look like the following: Schema Table Column Type Size tungsten Char1_Table id int 8 tungsten Char1_Table DataTypeSet varchar(20) 20 tungsten Char1_Table ValueDesc varchar(40) 40 tungsten Char1_Table Char1_Column char 1 2. The updates go into a file named test.simple_tab. The following is an example of the data in the CSV file: "64087","I","5","Some data","some data","b","1" "64087","I","6","more data","more data","c","2" "64088","D",3",","default","Max", z,"3" 3. The CSV file includes a unique global transaction ID, an operation code (I for insert and D for delete), and the primary key. For inserts, there are additional columns that contain data; for deletes, columns contain nulls. The last column is a row number, which allows for ordering after the data is loaded into Vertica. Copyright 2015 Hewlett Packard Enterprise Development LP. Page 12

13 4. The Tungsten Replicator applies transactions to replicas in serial order without deviations. If you INSERT and then UPDATE a row, it always works because the Replicator applies them to the slave server in the same order. 5. The Tungsten Replicator continues writing transactions until it reaches the block commit maximum. The Replicator then closes each CSV file and loads the content into a staging table that is named according to the base name. The staging table format mimics the CSV file columns. For example, the staging table could look like the following example: Schema Table Column Type Size tungsten stage_xxx_char1_table tungsten_seqno int 8 tungsten stage_xxx_char1_table tungsten_opcode char(1) 1 tungsten stage_xxx_char1_table id int 8 tungsten stage_xxx_char1_table DataTypeSet varchar(20) 20 tungsten stage_xxx_char1_table ValueDesc Varchar(40) 40 tungsten stage_xxx_char1_table Char1_Column Char 1 tungsten stage_xxx_char1_table tungsten_row_id int 8 6. Finally, the Replicator applies the deletes and inserts to the table test.simple_tab by executing SQL commands as shown in the following example: DELETE FROM tungsten.char1_table WHERE id IN (SELECT id FROM tungsten.stage_xxx_char1_table WHERE tungsten_opcode = 'D'); INSERT INTO tungsten.char1_table(id, DataTypeSet,ValueDesc,Char1_Column) SELECT id, DataTypeSet,ValueDesc,Char1_Column FROM tungsten.stage_xxx_char1_table AS stage_a WHERE tungsten_opcode='i' AND tungsten_row_id IN (SELECT MAX(tungsten_row_id) FROM tungsten.stage_xxx_char1_table GROUP BY id); Copyright 2015 Hewlett Packard Enterprise Development LP. Page 13

14 Known Limitations Tungsten currently has some important limitations for batch loading, namely: Primary keys must be a single column only. Tungsten does not handle multi-column keys. You must define the primary keys. Binary data may cause problems when converted to CSV as it converts to Unicode. Data Type Mapping: MySQL to Vertica The following table shows data type mapping between MySQL data types and Vertica data types. MySQL Data Type Vertica Data Type DATETIME DATETIME TIMESTAMP TIMESTAMP DATE DATE TIME TIME TINYINT TINYINT SMALLINT SMALLINT MEDIUMINT INT INT INT BIGINT INT VARCHAR VARCHAR CHAR CHAR BINARY BINARY VARBINARY VARBINARY TEXT, TINYTEXT, MEDIUMTEXT, LONGTEXT VARCHAR(65000) BLOB, TINYBLOB, MEDIUMBLOB, LONGBLOB VARBINARY(65000) FLOAT FLOAT Copyright 2015 Hewlett Packard Enterprise Development LP. Page 14

15 DOUBLE ENUM SET BIT(1) BIT DOUBLE PRECISION VARCHAR VARCHAR(4000) BOOLEAN CHAR(64) For More Information For More Information About Tungsten Vertica Community Edition Vertica Documentation Big Data and Analytics Community See ungsten-replicator-4.0/index.html L/index.htm -Data-and-Analytics/ctp/bigdata_analytics Copyright 2015 Hewlett Packard Enterprise Development LP. Page 15

Vertica OnDemand Getting Started Guide HPE Vertica Analytic Database. Software Version: 7.2.x

Vertica OnDemand Getting Started Guide HPE Vertica Analytic Database. Software Version: 7.2.x Vertica OnDemand Getting Started Guide HPE Vertica Analytic Database Software Version: 7.2.x Document Release Date: 12/15/2015 Legal Notices Warranty The only warranties for Hewlett Packard Enterprise

More information

Connectivity Pack for Microsoft Guide

Connectivity Pack for Microsoft 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

Database Migration from MySQL to RDM Server

Database Migration from MySQL to RDM Server MIGRATION GUIDE Database Migration from MySQL to RDM Server A Birdstep Technology, Inc. Raima Embedded Database Division Migration Guide Published: May, 2009 Author: Daigoro F. Toyama Senior Software Engineer

More information

MS ACCESS DATABASE DATA TYPES

MS ACCESS DATABASE DATA TYPES MS ACCESS DATABASE DATA TYPES Data Type Use For Size Text Memo Number Text or combinations of text and numbers, such as addresses. Also numbers that do not require calculations, such as phone numbers,

More information

Linas Virbalas Continuent, Inc.

Linas Virbalas Continuent, Inc. Linas Virbalas Continuent, Inc. Heterogeneous Replication Replication between different types of DBMS / Introductions / What is Tungsten (the whole stack)? / A Word About MySQL Replication / Tungsten Replicator:

More information

sqlite driver manual

sqlite driver manual sqlite driver manual A libdbi driver using the SQLite embedded database engine Markus Hoenicka mhoenicka@users.sourceforge.net sqlite driver manual: A libdbi driver using the SQLite embedded database engine

More information

Supported Platforms HPE Vertica Analytic Database. Software Version: 7.2.x

Supported Platforms HPE Vertica Analytic Database. Software Version: 7.2.x HPE Vertica Analytic Database Software Version: 7.2.x Document Release Date: 2/4/2016 Legal Notices Warranty The only warranties for Hewlett Packard Enterprise products and services are set forth in the

More information

Using SQL Server Management Studio

Using SQL Server Management Studio Using SQL Server Management Studio Microsoft SQL Server Management Studio 2005 is a graphical tool for database designer or programmer. With SQL Server Management Studio 2005 you can: Create databases

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

HP SiteScope. HP Vertica Solution Template Best Practices. For the Windows, Solaris, and Linux operating systems. Software Version: 11.

HP SiteScope. HP Vertica Solution Template Best Practices. For the Windows, Solaris, and Linux operating systems. Software Version: 11. HP SiteScope For the Windows, Solaris, and Linux operating systems Software Version: 11.23 HP Vertica Solution Template Best Practices Document Release Date: December 2013 Software Release Date: December

More information

HP Vertica Integration with SAP Business Objects: Tips and Techniques. HP Vertica Analytic Database

HP Vertica Integration with SAP Business Objects: Tips and Techniques. HP Vertica Analytic Database HP Vertica Integration with SAP Business Objects: Tips and Techniques HP Vertica Analytic Database HP Big Data Document Release Date: June 23, 2015 Legal Notices Warranty The only warranties for HP products

More information

Microsoft SQL Server Connector for Apache Hadoop Version 1.0. User Guide

Microsoft SQL Server Connector for Apache Hadoop Version 1.0. User Guide Microsoft SQL Server Connector for Apache Hadoop Version 1.0 User Guide October 3, 2011 Contents Legal Notice... 3 Introduction... 4 What is SQL Server-Hadoop Connector?... 4 What is Sqoop?... 4 Supported

More information

From Dolphins to Elephants: Real-Time MySQL to Hadoop Replication with Tungsten

From Dolphins to Elephants: Real-Time MySQL to Hadoop Replication with Tungsten From Dolphins to Elephants: Real-Time MySQL to Hadoop Replication with Tungsten MC Brown, Director of Documentation Linas Virbalas, Senior Software Engineer. About Tungsten Replicator Open source drop-in

More information

Informatica Data Replication 9.1.1 FAQs

Informatica Data Replication 9.1.1 FAQs Informatica Data Replication 9.1.1 FAQs 2012 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

SQL Server An Overview

SQL Server An Overview SQL Server An Overview SQL Server Microsoft SQL Server is designed to work effectively in a number of environments: As a two-tier or multi-tier client/server database system As a desktop database system

More information

Replicating to everything

Replicating to everything Replicating to everything Featuring Tungsten Replicator A Giuseppe Maxia, QA Architect Vmware About me Giuseppe Maxia, a.k.a. "The Data Charmer" QA Architect at VMware Previously at AB / Sun / 3 times

More information

How, What, and Where of Data Warehouses for MySQL

How, What, and Where of Data Warehouses for MySQL How, What, and Where of Data Warehouses for MySQL Robert Hodges CEO, Continuent. Introducing Continuent The leading provider of clustering and replication for open source DBMS Our Product: Continuent Tungsten

More information

Services. Relational. Databases & JDBC. Today. Relational. Databases SQL JDBC. Next Time. Services. Relational. Databases & JDBC. Today.

Services. Relational. Databases & JDBC. Today. Relational. Databases SQL JDBC. Next Time. Services. Relational. Databases & JDBC. Today. & & 1 & 2 Lecture #7 2008 3 Terminology Structure & & Database server software referred to as Database Management Systems (DBMS) Database schemas describe database structure Data ordered in tables, rows

More information

Service Anywhere. Release Notes

Service Anywhere. Release Notes Service Anywhere Release Notes Document Release Date: 10 January 2016 Software Release Date: 10 January 2016 This Service Anywhere document includes the following: "Fixed defects and enhancements" below

More information

MySQL+HandlerSocket=NoSQL

MySQL+HandlerSocket=NoSQL Why you need NoSQL Alternatives Meet HS HS internal working HS-MySQL interoperability Interface MySQL+HandlerSocket=NoSQL Protocol Using HS Commands Peculiarities Configuration hints Use cases @ Badoo

More information

HP Device Manager 4.7

HP Device Manager 4.7 Technical white paper HP Device Manager 4.7 Database Troubleshooting Guide Table of contents Overview... 2 Using MS SQL Server... 2 Using PostgreSQL... 3 Troubleshooting steps... 3 Migrate Database...

More information

Database Administration with MySQL

Database Administration with MySQL Database Administration with MySQL Suitable For: Database administrators and system administrators who need to manage MySQL based services. Prerequisites: Practical knowledge of SQL Some knowledge of relational

More information

HP Project and Portfolio Management Center

HP Project and Portfolio Management Center HP Project and Portfolio Management Center Software Version: 9.20 RESTful Web Services Guide Document Release Date: February 2013 Software Release Date: February 2013 Legal Notices Warranty The only warranties

More information

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Application Setup help topics for printing

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Application Setup help topics for printing HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Application Setup help topics for printing Document Release Date: December 2014 Software Release Date: December

More information

HP AppPulse Active. Software Version: 2.2. Real Device Monitoring For AppPulse Active

HP AppPulse Active. Software Version: 2.2. Real Device Monitoring For AppPulse Active HP AppPulse Active Software Version: 2.2 For AppPulse Active Document Release Date: February 2015 Software Release Date: November 2014 Legal Notices Warranty The only warranties for HP products and services

More information

1 Changes in this release

1 Changes in this release Oracle SQL Developer Oracle TimesTen In-Memory Database Support Release Notes Release 4.0 E39883-01 June 2013 This document provides late-breaking information as well as information that is not yet part

More information

Supported Platforms. HP Vertica Analytic Database. Software Version: 7.1.x

Supported Platforms. HP Vertica Analytic Database. Software Version: 7.1.x HP Vertica Analytic Database Software Version: 7.1.x Document Release Date: 10/14/2015 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements

More information

ODBC Client Driver Help. 2015 Kepware, Inc.

ODBC Client Driver Help. 2015 Kepware, Inc. 2015 Kepware, Inc. 2 Table of Contents Table of Contents 2 4 Overview 4 External Dependencies 4 Driver Setup 5 Data Source Settings 5 Data Source Setup 6 Data Source Access Methods 13 Fixed Table 14 Table

More information

Supported Platforms. HP Vertica Analytic Database. Software Version: 7.0.x

Supported Platforms. HP Vertica Analytic Database. Software Version: 7.0.x HP Vertica Analytic Database Software Version: 7.0.x Document Release Date: 5/7/2014 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements

More information

HP Software as a Service

HP Software as a Service HP Software as a Service Software Version: 6.1 Federated SSO Document Release Date: August 2013 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty

More information

FileMaker 14. ODBC and JDBC Guide

FileMaker 14. ODBC and JDBC Guide FileMaker 14 ODBC and JDBC Guide 2004 2015 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and FileMaker Go are trademarks of FileMaker,

More information

Customizing Asset Manager for Managed Services Providers (MSP) Software Asset Management

Customizing Asset Manager for Managed Services Providers (MSP) Software Asset Management HP Asset Manager Customizing Asset Manager for Managed Services Providers (MSP) Software Asset Management How To Manage Generic Software Counters and Multiple Companies Legal Notices... 2 Introduction...

More information

Using Business Activity Monitoring

Using Business Activity Monitoring bc Using Business Activity Monitoring Workbench July 2008 Adobe LiveCycle ES Update 1 Update 1 Using Business Activity Monitoring Workbench Portions Copyright 2008 Adobe Systems Incorporated. All rights

More information

HP Quality Center. Software Version: 10.00. Microsoft Word Add-in Guide

HP Quality Center. Software Version: 10.00. Microsoft Word Add-in Guide HP Quality Center Software Version: 10.00 Microsoft Word Add-in Guide Document Release Date: February 2012 Software Release Date: January 2009 Legal Notices Warranty The only warranties for HP products

More information

HP ThinPro. Table of contents. Connection Configuration for RDP Farm Deployments. Technical white paper

HP ThinPro. Table of contents. Connection Configuration for RDP Farm Deployments. Technical white paper Technical white paper HP ThinPro Connection Configuration for RDP Farm Deployments Table of contents Introduction... 2 Obtaining the Load Balance Information URL... 2 Single farm deployments... 2 Multiple

More information

Architecting the Future of Big Data

Architecting the Future of Big Data Hive ODBC Driver User Guide Revised: October 1, 2012 2012 Hortonworks Inc. All Rights Reserved. Parts of this Program and Documentation include proprietary software and content that is copyrighted and

More information

HP IMC User Behavior Auditor

HP IMC User Behavior Auditor HP IMC User Behavior Auditor Administrator Guide Abstract This guide describes the User Behavior Auditor (UBA), an add-on service module of the HP Intelligent Management Center. UBA is designed for IMC

More information

Database migration using Wizard, Studio and Commander. Based on migration from Oracle to PostgreSQL (Greenplum)

Database migration using Wizard, Studio and Commander. Based on migration from Oracle to PostgreSQL (Greenplum) Step by step guide. Database migration using Wizard, Studio and Commander. Based on migration from Oracle to PostgreSQL (Greenplum) Version 1.0 Copyright 1999-2012 Ispirer Systems Ltd. Ispirer and SQLWays

More information

HP Server Automation Enterprise Edition

HP Server Automation Enterprise Edition HP Server Automation Enterprise Edition Software Version: 10.0 User Guide: Server Patching Document Release Date: June 13, 2013 Software Release Date: June 2013 Legal Notices Warranty The only warranties

More information

Using MySQL for Big Data Advantage Integrate for Insight Sastry Vedantam sastry.vedantam@oracle.com

Using MySQL for Big Data Advantage Integrate for Insight Sastry Vedantam sastry.vedantam@oracle.com Using MySQL for Big Data Advantage Integrate for Insight Sastry Vedantam sastry.vedantam@oracle.com Agenda The rise of Big Data & Hadoop MySQL in the Big Data Lifecycle MySQL Solutions for Big Data Q&A

More information

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Request Management help topics for printing

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Request Management help topics for printing HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Request Management help topics for printing Document Release Date: December 2014 Software Release Date: December

More information

HP Business Service Management

HP Business Service Management HP Business Service Management for the Windows and Linux operating systems Software Version: 9.10 Business Process Insight Server Administration Guide Document Release Date: August 2011 Software Release

More information

Tungsten Replicator, more open than ever!

Tungsten Replicator, more open than ever! Tungsten Replicator, more open than ever! MC Brown, Senior Product Line Manager September, 2015 2014 VMware Inc. All rights reserved. We Face An Age Old Problem BRS/Search 2 It s Gotten Worse 3 Much Worse

More information

AWS Schema Conversion Tool. User Guide Version 1.0

AWS Schema Conversion Tool. User Guide Version 1.0 AWS Schema Conversion Tool User Guide AWS Schema Conversion Tool: User Guide Copyright 2016 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may

More information

Configuring an Alternative Database for SAS Web Infrastructure Platform Services

Configuring an Alternative Database for SAS Web Infrastructure Platform Services Configuration Guide Configuring an Alternative Database for SAS Web Infrastructure Platform Services By default, SAS Web Infrastructure Platform Services is configured to use SAS Framework Data Server.

More information

FileMaker 13. ODBC and JDBC Guide

FileMaker 13. ODBC and JDBC Guide FileMaker 13 ODBC and JDBC Guide 2004 2013 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks of FileMaker, Inc.

More information

HP Business Service Management

HP Business Service Management HP Business Service Management Software Version: 9.26 Windows operating system RUM for Citrix - Best Practices Document Release Date: September 2015 Software Release Date: September 2015 RUM for Citrix

More information

ibolt V3.2 Release Notes

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

More information

HP ThinPro. Table of contents. Enabling RemoteFX for RDP. Technical white paper

HP ThinPro. Table of contents. Enabling RemoteFX for RDP. Technical white paper Technical white paper HP ThinPro Enabling RemoteFX for RDP Table of contents Overview... 2 Operating system requirements... 2 USB redirection... 2 Enabling RemoteFX on the RDP server... 2 Windows 7 and

More information

HP ALM. Software Version: 12.50. Tutorial

HP ALM. Software Version: 12.50. Tutorial HP ALM Software Version: 12.50 Tutorial Document Release Date: December 2015 Software Release Date: December 2015 Legal Notices Warranty The only warranties for HP products and services are set forth in

More information

IronKey Enterprise File Audit Admin Guide

IronKey Enterprise File Audit Admin Guide IronKey Enterprise File Audit Admin Guide Last Updated July 2015 Thank you for choosing IronKey Enterprise Management Service by Imation. Imation s Mobile Security Group is committed to creating and developing

More information

Jet Data Manager 2012 User Guide

Jet Data Manager 2012 User Guide Jet Data Manager 2012 User Guide Welcome This documentation provides descriptions of the concepts and features of the Jet Data Manager and how to use with them. With the Jet Data Manager you can transform

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Application Notes Backup Exec 11D VSS Snapshots and Transportable Offhost Backup Legal Notices Warranty The only warranties for HP products and services are set

More information

C++ Wrapper Library for Firebird Embedded SQL

C++ Wrapper Library for Firebird Embedded SQL C++ Wrapper Library for Firebird Embedded SQL Written by: Eugene Wineblat, Software Developer of Network Security Team, ApriorIT Inc. www.apriorit.com 1. Introduction 2. Embedded Firebird 2.1. Limitations

More information

HP Quality Center. Upgrade Preparation Guide

HP Quality Center. Upgrade Preparation Guide HP Quality Center Upgrade Preparation Guide Document Release Date: November 2008 Software Release Date: November 2008 Legal Notices Warranty The only warranties for HP products and services are set forth

More information

Administering Windows-based HP Thin Clients with System Center 2012 R2 Configuration Manager SP1

Administering Windows-based HP Thin Clients with System Center 2012 R2 Configuration Manager SP1 Technical white paper Administering Windows-based HP Thin Clients with System Center 2012 R2 Configuration Manager SP1 Table of contents Executive summary... 3 Configuration Manager features... 3 Asset

More information

Spring,2015. Apache Hive BY NATIA MAMAIASHVILI, LASHA AMASHUKELI & ALEKO CHAKHVASHVILI SUPERVAIZOR: PROF. NODAR MOMTSELIDZE

Spring,2015. Apache Hive BY NATIA MAMAIASHVILI, LASHA AMASHUKELI & ALEKO CHAKHVASHVILI SUPERVAIZOR: PROF. NODAR MOMTSELIDZE Spring,2015 Apache Hive BY NATIA MAMAIASHVILI, LASHA AMASHUKELI & ALEKO CHAKHVASHVILI SUPERVAIZOR: PROF. NODAR MOMTSELIDZE Contents: Briefly About Big Data Management What is hive? Hive Architecture Working

More information

HP Image Assistant. Table of contents. Quick Start Guide

HP Image Assistant. Table of contents. Quick Start Guide HP Image Assistant Quick Start Guide Table of contents Overview... 2 Glossary... 2 System requirements... 2 Using HPIA... 2 Downloading HPIA... 2 Capturing a Golden Image configuration file... 3 Using

More information

HP Real User Monitor. Release Notes. For the Windows and Linux operating systems Software Version: 9.21. Document Release Date: November 2012

HP Real User Monitor. Release Notes. For the Windows and Linux operating systems Software Version: 9.21. Document Release Date: November 2012 HP Real User Monitor For the Windows and Linux operating systems Software Version: 9.21 Release Notes Document Release Date: November 2012 Software Release Date: November 2012 Legal Notices Warranty The

More information

HP Application Lifecycle Management

HP Application Lifecycle Management HP Application Lifecycle Management Software Version: 11.00 Microsoft Word Add-in Guide Document Release Date: November 2010 Software Release Date: October 2010 Legal Notices Warranty The only warranties

More information

How To Create A Table In Sql 2.5.2.2 (Ahem)

How To Create A Table In Sql 2.5.2.2 (Ahem) Database Systems Unit 5 Database Implementation: SQL Data Definition Language Learning Goals In this unit you will learn how to transfer a logical data model into a physical database, how to extend or

More information

A table is a collection of related data entries and it consists of columns and rows.

A table is a collection of related data entries and it consists of columns and rows. CST 250 MySQL Notes (Source: www.w3schools.com) MySQL is the most popular open-source database system. What is MySQL? MySQL is a database. The data in MySQL is stored in database objects called tables.

More information

Oracle Database 10g Express

Oracle Database 10g Express Oracle Database 10g Express This tutorial prepares the Oracle Database 10g Express Edition Developer to perform common development and administrative tasks of Oracle Database 10g Express Edition. Objectives

More information

HP Universal CMDB. Software Version: 10.22. Data Flow Management Best Practices

HP Universal CMDB. Software Version: 10.22. Data Flow Management Best Practices HP Universal CMDB Software Version: 10.22 Data Flow Management Best Practices Document Release Date: December 2015 Software Release Date: December 2015 Legal Notices Warranty The only warranties for HP

More information

AWS Schema Conversion Tool. User Guide Version 1.0

AWS Schema Conversion Tool. User Guide Version 1.0 AWS Schema Conversion Tool User Guide AWS Schema Conversion Tool: User Guide Copyright 2016 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may

More information

HP Device Manager 4.7

HP Device Manager 4.7 Technical white paper HP Device Manager 4.7 LDAP Troubleshooting Guide Table of contents Introduction... 2 HPDM LDAP-related context and background... 2 LDAP in HPDM... 2 Full domain account name login...

More information

HP Asset Manager. Software version: 5.20. Integration with software distribution and configuration management tools

HP Asset Manager. Software version: 5.20. Integration with software distribution and configuration management tools HP Asset Manager Software version: 5.20 Integration with software distribution and configuration management tools Document Release Date: 01 October 2009 Software Release Date: October 2009 Legal Notices

More information

Ontrack PowerControls User Guide Version 8.0

Ontrack PowerControls User Guide Version 8.0 ONTRACK POWERCONTROLS Ontrack PowerControls User Guide Version 8.0 Instructions for operating Ontrack PowerControls in Microsoft SQL Server Environments NOVEMBER 2014 NOTICE TO USERS Ontrack PowerControls

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 HP Business Availability Center Integration Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty The only

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 HP Project and Portfolio Management Integration Guide Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty

More information

Microsoft SQL connection to Sysmac NJ Quick Start Guide

Microsoft SQL connection to Sysmac NJ Quick Start Guide Microsoft SQL connection to Sysmac NJ Quick Start Guide This Quick Start will show you how to connect to a Microsoft SQL database it will not show you how to set up the database. Watch the corresponding

More information

Integrating with Apache Kafka HPE Vertica Analytic Database. Software Version: 7.2.x

Integrating with Apache Kafka HPE Vertica Analytic Database. Software Version: 7.2.x HPE Vertica Analytic Database Software Version: 7.2.x Document Release Date: 2/4/2016 Legal Notices Warranty The only warranties for Hewlett Packard Enterprise products and services are set forth in the

More information

HP Device Manager 4.6

HP Device Manager 4.6 Technical white paper HP Device Manager 4.6 Disaster Recovery Guide Table of contents Overview... 2 General recovery process... 2 Recovering the HPDM Server... 5 Backing up the data... 5 Installing the

More information

SAP HANA Client Installation and Update Guide

SAP HANA Client Installation and Update Guide PUBLIC SAP HANA Platform SPS 12 Document Version: 1.0 2016-05-11 Content 1 Introduction....3 1.1 Supported Platforms.... 3 1.2 Software Download.... 4 2 SAP HANA Client on UNIX or Linux....7 2.1 Planning

More information

Contents. Pentaho Corporation. Version 5.1. Copyright Page. New Features in Pentaho Data Integration 5.1. PDI Version 5.1 Minor Functionality Changes

Contents. Pentaho Corporation. Version 5.1. Copyright Page. New Features in Pentaho Data Integration 5.1. PDI Version 5.1 Minor Functionality Changes Contents Pentaho Corporation Version 5.1 Copyright Page New Features in Pentaho Data Integration 5.1 PDI Version 5.1 Minor Functionality Changes Legal Notices https://help.pentaho.com/template:pentaho/controls/pdftocfooter

More information

HP Vertica on Amazon Web Services Backup and Restore Guide

HP Vertica on Amazon Web Services Backup and Restore Guide HP Vertica on Amazon Web Services Backup and Restore Guide HP Vertica Analytic Database Software Version: 7.1.x Document Release Date: 8/13/2015 Legal Notices Warranty The only warranties for HP products

More information

FileMaker 12. ODBC and JDBC Guide

FileMaker 12. ODBC and JDBC Guide FileMaker 12 ODBC and JDBC Guide 2004 2012 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks of FileMaker, Inc.

More information

HP SiteScope. Hadoop Cluster Monitoring Solution Template Best Practices. For the Windows, Solaris, and Linux operating systems

HP SiteScope. Hadoop Cluster Monitoring Solution Template Best Practices. For the Windows, Solaris, and Linux operating systems HP SiteScope For the Windows, Solaris, and Linux operating systems Software Version: 11.23 Hadoop Cluster Monitoring Solution Template Best Practices Document Release Date: December 2013 Software Release

More information

Integrating with Apache Hadoop HPE Vertica Analytic Database. Software Version: 7.2.x

Integrating with Apache Hadoop HPE Vertica Analytic Database. Software Version: 7.2.x HPE Vertica Analytic Database Software Version: 7.2.x Document Release Date: 12/7/2015 Legal Notices Warranty The only warranties for Hewlett Packard Enterprise products and services are set forth in the

More information

CA Workload Automation Agent for Microsoft SQL Server

CA Workload Automation Agent for Microsoft SQL Server CA Workload Automation Agent for Microsoft SQL Server Release Notes r11.3.1, Second Edition This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter

More information

HP Access Control Express Installation Guide

HP Access Control Express Installation Guide HP Access Control Express Installation Guide 1 HP Access Control Express Installation Guide Reference number: 20111005 Edition: November 2011 2 Legal notices (c) Copyright 2011 Hewlett-Packard Development

More information

HP Quality Center. Software Version: 9.20. Version Control Add-in Guide

HP Quality Center. Software Version: 9.20. Version Control Add-in Guide HP Quality Center Software Version: 9.20 Version Control Add-in Guide Document Number: QCGENVC9.2/01 Document Release Date: May 2007 Software Release Date: May 2007 Legal Notices Warranty The only warranties

More information

Changes for Release 3.0 from Release 2.1.1

Changes for Release 3.0 from Release 2.1.1 Oracle SQL Developer Oracle TimesTen In-Memory Database Support Release Notes Release 3.0 E18439-03 February 2011 This document provides late-breaking information as well as information that is not yet

More information

HP PolyServe Software 4.1.0 upgrade guide

HP PolyServe Software 4.1.0 upgrade guide HP StorageWorks HP PolyServe Software 4.1.0 upgrade guide This document describes how to upgrade to HP PolyServe Matrix Server 4.1.0, HP PolyServe Software for Microsoft SQL Server 4.1.0, and HP PolyServe

More information

Package sjdbc. R topics documented: February 20, 2015

Package sjdbc. R topics documented: February 20, 2015 Package sjdbc February 20, 2015 Version 1.5.0-71 Title JDBC Driver Interface Author TIBCO Software Inc. Maintainer Stephen Kaluzny Provides a database-independent JDBC interface. License

More information

Backing up and restoring HP Systems Insight Manager 6.0 or greater data files in a Windows environment

Backing up and restoring HP Systems Insight Manager 6.0 or greater data files in a Windows environment Technical white paper Backing up and restoring HP Systems Insight Manager 6.0 or greater data files in a Windows environment Table of contents Abstract 2 Introduction 2 Saving and restoring data files

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 HP Service Desk Integration Guide Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty The only warranties

More information

AlphaServer Management Station

AlphaServer Management Station AlphaServer Management Station Installation Instructions for HP Tru64 UNIX Systems August 2006 Product Version: AlphaServer Management Station Version 5.2 This document describes how to install the AlphaServer

More information

HP OpenView Smart Plug-in for Microsoft Exchange Server

HP OpenView Smart Plug-in for Microsoft Exchange Server HP OpenView Smart Plug-in for Microsoft Exchange Server For the UNIX Operating System Release Notes Software version: 10.00 / November 2006 This document provides an overview of the changes made to HP

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 HP Operations Manager Incent Web Service Integration Gue Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty

More information

HP Software as a Service. Federated SSO Guide

HP Software as a Service. Federated SSO Guide HP Software as a Service Federated SSO Guide Document Release Date: July 2014 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements accompanying

More information

HP Thin Client Imaging Tool

HP Thin Client Imaging Tool HP Thin Client Imaging Tool Table of Contents: Abstract... 1 Introduction... 1 System Requirements... 1 Software... 1 Hardware... 1 Getting Started... 2 Formatting a USB Flash Device... 3 Unpacking the

More information

Release Bulletin Sybase ETL Small Business Edition 4.2

Release Bulletin Sybase ETL Small Business Edition 4.2 Release Bulletin Sybase ETL Small Business Edition 4.2 Document ID: DC00737-01-0420-02 Last revised: November 16, 2007 Topic Page 1. Accessing current release bulletin information 2 2. Product summary

More information

HP AppPulse Mobile. Adding HP AppPulse Mobile to Your Android App

HP AppPulse Mobile. Adding HP AppPulse Mobile to Your Android App HP AppPulse Mobile Adding HP AppPulse Mobile to Your Android App Document Release Date: April 2015 How to Add HP AppPulse Mobile to Your Android App How to Add HP AppPulse Mobile to Your Android App For

More information