Accessing Hadoop Data Using Hive

Size: px
Start display at page:

Download "Accessing Hadoop Data Using Hive"

Transcription

1 An IBM Proof of Technology Accessing Hadoop Data Using Hive Unit 3: Hive DML in action

2 An IBM Proof of Technology Catalog Number Copyright IBM Corporation, 2015 US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.

3 Contents LAB 3 HIVE DML IN ACTION SETTING HDFS USER PERMISSIONS ACCESSING THE HIVE CLI SAMPLE DATA DESCRIPTIONS LOADING DATA HDFS DATA FROM THE LINUX CONSOLE LOADING DATA INTO THE MANAGED NON-PARTITIONED TABLES LOADING DATA INTO THE MANAGED PARTITIONED TABLE RUNNING QUERIES SELECTING DATA TAKING ADVANTAGE OF PARTITIONED DATA JOINS VIEWS EXPORTING DATA EXPLAIN SUMMARY Contents Page 3

4 Lab 3 Hive DML in action Now that we have learned how to create databases, tables, and partitions in Hive, we are ready to work with Hive s Data Manipulation Language and get some work done! Let s load some data and start writing queries. After completing this hands-on lab, you will be able to: Load data into Hive tables and partitions. Run a variety of HiveQL queries against your data. Take advantage of partitioning to speed up queries. Use Views to reduce the complexity of your queries. Export data out of Hive. Use Explain to learn more about your queries. Allow 45 minutes to 1 hour to complete this section of lab. This version of the lab was designed using the IBM BigInsights 4.1 Quick Start Edition. Throughout this lab it is assumed that you will be using the following account login information: Username Password VM image setup screen root password Ambari admin admin If you are continuing this series of hands on labs immediately after completing Accessing Hadoop Data Using Hive Unit 2: Working with Hive DDL, you may move on to section 1.1 of this lab. Otherwise please complete the prior labs to get started. (All Hadoop components should be running and you should have already created the databases, tables and partitions that will be used in this unit.) Page 4 Hive DML

5 1.1 Setting HDFS User Permissions Before we continue, we will make an ownership change to one of the directories on HDFS that Hive uses. This will allow us to continue the rest of the lab without having to worry about the details of Hadoop permissions. 1. We will execute a few commands: $ su - hdfs $ hadoop fs chmod R 777 / Once you run those commands enter the exit command to return back to the virtuser id. $ exit Now you can continue to the next step of the lab. Possible error if this section is ignored (if we don t specify permissions). Hands-on-Lab Page 5

6 1.2 Accessing the Hive CLI In this section we will navigate to the Hive Beeline CLI and start an interactive CLI session. 2. In a Linux terminal change to the Hive bin directory $ cd /usr/iop/ /hive/bin 3. Start an interactive Hive shell session. $./beeline 4. Connect to Hive. beeline>!connect jdbc:hive2://rvm.svl.ibm.com:10000 virtuser password org.apache.hive.jdbc.hivedriver 5. Tell Hive to use the computersalesdb (we will use this database for the rest of this interactive session). hive> USE computersalesdb; Note: Please run these commands whenever you exit and re-enter Hive. Page 6 Hive DML

7 1.2.1 Sample Data Descriptions Before we begin working in Hive, review the data we will be using. It may be useful to print these pages so you can refer to the data when running your queries. Our sample data is from a fictitious computer retailer. The company sells computer parts and generally serves a single State in the country. Customer.csv: Purpose: Hold customer records. Columns: FNAME LNAME STATUS TELNO CUSTOMER_ID CITY ZIP Customer s First Name Customer s Last Name Active or Inactive status Telephone # Customer s unique ID City and Zip code separated by the character. Example of contents: Hands-on-Lab Page 7

8 Product.csv: Purpose: Hold product records. Columns: PROD_ NAME DESCRIPTION CATEGORY QTY_ON_HAND PROD_ NUM PACKAGED_ WITH Name of product Description of computer product Category product belongs to Quantity of product in warehouse Unique product number Colon separated list of things that come in package with product. Example of contents: Page 8 Hive DML

9 Sales.csv: Purpose: Holds all historical sales records. Company updates once a month. Columns: CUST_ID PROD_NUM QTY DATE SALES_ID ID of customer who made purchase ID of product that was purchased QTY purchased Date of sale Unique sale ID Example of contents: 1.3 Loading Data In our previous lab, we created 4 new tables. These tables need to have data in them to be useful to us. The table names are customer, products, sales_staging, and sales. Remember that the customer table is an External table and we already loaded data into it. Hands-on-Lab Page 9

10 1.3.1 HDFS Data from the Linux Console In this lab, we use the Linux console along with HDFS commands to view our data in HDFS. 1. Let s see what the /apps/hive/warehouse/computersalesdb.db directory currently contains on HDFS. This is the path of the directory that all of our Hive managed tables will be stored in. $ hadoop fs -ls /apps/hive/warehouse/computersalesdb.db 2. Now we will copy the rest of our data files to a location on HDFS. First let s make a new directory to put the data files in. Let s create this /tmp/tempdata directory on HDFS. We will then load our tables with this data in the next section of the lab. $ hadoop fs -mkdir /tmp/tempdata; Next to make things easy, let s just copy our whole local WithoutHeaders directory right into the /tmp/tempdata directory we just created on HDFS. $ hadoop fs -put /mnt/hgfs/labfiles/computer_business/withoutheaders/ /tmp/tempdata; Then list out the contents of the new directory on HDFS $ hadoop fs -ls /tmp/tempdata/withoutheaders Page 10 Hive DML

11 Now go into HDFS and run step 1.1 Setting HDFS User Permissions so we can write into the folder Loading Data into the Managed Non-Partitioned Tables The first table we created in the previous lab was the products table. This table is fully managed by Hive and does not contain any partitions. We will now load the products table with the data that is stored in the local /tmp/tempdata/withoutheaders/product.csv file on HDFS. 1. In the CLI, create the new Products table in Hive. hive> LOAD DATA INPATH '/tmp/tempdata/withoutheaders/product.csv' OVERWRITE INTO TABLE products; Hive copies the data from the file. Our products table now has data in it. Let s check it out! Hands-on-Lab Page 11

12 2. Quit out of Hive and list out the contents of the /apps/hive/warehouse/computersalesdb.db/products directory. You will see the Product.csv file is there within that directory. $ hadoop fs -ls /apps/hive/warehouse/computersalesdb.db/products We can easily view the contents of the Product.csv file by running the Hadoop fs -cat command. $ hadoop fs -cat /apps/hive/warehouse/computersalesdb.db/products/product.csv Look at the data displayed - our products table is now loaded into Hive! 3. Next we will load sales records into the sales_staging table. hive> LOAD DATA INPATH '/tmp/tempdata/withoutheaders/sales.csv' INTO TABLE sales_staging; Page 12 Hive DML

13 Notice we left off the OVERWRITE keyword in this statement. This is because we normally would want to add the monthly sales data to our historical list of records already in the sales_staging table. We would not want to overwrite all the records in that table with just this month s data. 4. Again, let s verify that our data is now within the Hive warehouse on HDFS, by checking out the file in the Linux console using the hdfs fs cat command. $ hadoop fs -cat /apps/hive/warehouse/computersalesdb.db/sales_staging/sales.csv Hands-on-Lab Page 13

14 Looks like a success! Loading Data into the Managed Partitioned Table Now that our sales_staging table has data we can work with, let s write some queries that will allow us to load our partitioned sales table (partitioned on sales_date) with data coming from sales_staging. 1. In the Beeline CLI, load sales data from into a partition of the sales table. hive> INSERT OVERWRITE TABLE sales PARTITION (sales_date = ' ') SELECT cust_id, prod_num, qty, sales_id FROM sales_staging ss WHERE ss.sale_date = ' '; Page 14 Hive DML

15 Notice it took a little while for this to complete. This is because you ve invoked a MapReduce job (thanks to the WHERE clause)! Also make sure that you have HDFS, MapReduce2, and Hive all running on Ambari, or this query will NOT work. 2. In a Linux Console, do a hadoop fs ls command and take a look in the sales folder now. You will see a new subdirectory named sales_date= Within that directory is a data file named _0. If you cat that file you will see that it only contains the data for our sales. $ hadoop fs ls /apps/hive/warehouse/computersalesdb.db/sales $ hadoop fs ls /apps/hive/warehouse/computersalesdb.db/sales/sales_date= $ hadoop fs cat /apps/hive/warehouse/computersalesdb.db/sales/sales_date= /000000_0 3. Following the same procedures, load sales data from into a new partition of the sales table. Hands-on-Lab Page 15

16 hive> INSERT OVERWRITE TABLE sales PARTITION (sales_date = ' ') SELECT cust_id, prod_num, qty, sales_id FROM sales_staging ss WHERE ss.sale_date = ' '; 4. In a Linux Console, do a hadoop fs -ls command and take a look in the sales folder now. You will see a new subdirectory named sales_date= Within that directory is a data file named _0. If you cat that file you will see that it only contains the data for our sales. $ hadoop fs ls /apps/hive/warehouse/computersalesdb.db/sales $ hadoop fs ls /apps/hive/warehouse/computersalesdb.db/sales/sales_date= Page 16 Hive DML

17 $ hadoop fs cat /apps/hive/warehouse/computersalesdb.db/sales/sales_date= /000000_0 1.4 Running Queries Selecting Data Now that our tables have data in them, let s start running queries against that data. 1. In the CLI, select all the data in the products table where the product category is Video. Order the results by prod_num. hive> SELECT * FROM products WHERE category= 'Video' ORDER BY prod_num; Hands-on-Lab Page 17

18 Now open up Ambari in the web browser. Click MapReduce2 in the left hand menu. Then select JobHistory UI from the Quick Links drop down menu. Page 18 Hive DML

19 Note: If opening the job history doesn t work this way, try opening a new tab and typing rvm.svl.ibm.com:19888/jobhistory Inside the job history table, you will notice the job that Hive just ran. Our Hive query (first row) resulted in one MapReduce job being run. The MapReduce job required one Mapper and one Reducer. It took about 47 seconds to run the query. You can click on the Job ID for more details. Hive printed the query results in the CLI. The 3 records that have the category= Video are in fact returned back in the CLI! 2. Now select all the products where category= Video AND the first element of the PACKAGED_WITH array contains dvd. hive> SELECT * FROM products WHERE category= 'Video' AND PACKAGED_WITH[0]= 'dvd'; 3. Find out how many products we have for each category of item by using the GROUP BY clause. hive> SELECT category, count(*) FROM products GROUP BY category; Hands-on-Lab Page 19

20 We can see our results and they look good. 4. Use a nested select to show the product categories that contain more than 3 products. hive> FROM( SELECT category, count(*) as count FROM products GROUP BY category) cats SELECT * WHERE cats.count > 3; Your output should like similar to the above screen capture. You will notice that in addition to using a subquery we also used two column aliases ( count and cats ) Page 20 Hive DML

21 1.4.2 Taking Advantage of Partitioned Data The sales table is partitioned on sales_date. In a previous exercise we loaded data into two partitions of this table ( and partitions). Let s take advantage of this partitioning to improve latency. 1. In the CLI, run a SELECT query that finds only the sales that occurred on Order the results by the sale_id. hive> SELECT * FROM sales WHERE sales_date = ' ' ORDER BY sales_id; Hands-on-Lab Page 21

22 Just the sales records were returned. Let s take a look at the job that was run on Hadoop to fulfill our Hive query. We can do this easily back on the Hadoop JobHistory page. You will see our job, named after our query, highlighted in red below: One MapReduce Job was required to complete this query. This job contained one Map task and one Reduce task. Only the sales_id= partition file had to be read in to complete this query, saving us some wait time theoretically a lot of wait time if we had a large number of historical sales data Joins 1. Let s show all Optical category sales that occurred on We will need to do an equijoin between the sales and products tables to gather this information. hive> SELECT s.cust_id, s.prod_num, s.qty, s.sales_id, p.prod_name, p.category FROM sales s JOIN products p ON s.prod_num = p.prod_num WHERE s.sales_date = ' ' AND p.category = 'Optical'; Page 22 Hive DML

23 The join was successful. We got the 3 records we were looking for Views 1. Now let s create a View that stores a query which returns all the sales records (joined with products table) where the product category is Optical. hive> CREATE VIEW optical_sales AS SELECT s.cust_id, s.prod_num, s.qty, s.sales_id, p.prod_name, p.category FROM sales s JOIN products p ON s.prod_num = p.prod_num WHERE p.category = 'Optical'; The View was successfully created. 2. Now that we have the optical_sales view, we can use it within other queries, just like it were a table. Notice how short this query is. hive> SELECT * FROM optical_sales WHERE qty > 1; Hands-on-Lab Page 23

24 1.5 Exporting Data Imagine our management team wants us to extract all sales of Optical devices and give it to them in a format outside of the Hive CLI. We can do this by exporting the data from Hive. 1. Exit out of Hive. We are going to create a new directory on HDFS called reports. Create this directory within the /tmp directory on HDFS. $ hadoop fs -mkdir /tmp/reports; 2. Make this new folder writable by all users. hadoop fs chmod R 777 /tmp/reports 3. Back in the Hive CLI, we will utilize our previous query and write the data to the /tmp/reports directory on the HDFS file system. hive> INSERT OVERWRITE DIRECTORY '/tmp/reports' SELECT * FROM optical_sales WHERE qty > 1; Page 24 Hive DML

25 4. Exit out of Hive. Enter the following command: $ hadoop fs ls '/tmp/reports' Notice we have one new file called _0! This is the data that Hive wrote out. Now let s cat this file and see what the contents look like: $ hadoop fs cat '/tmp/reports/000000_0' You could copy the new report out of HDFS and work with the results in the tools of your choice. 1.6 Explain Let s take a brief look at using EXPLAIN in a Hive query. 1. We will have Hive explain the execution plan for a simple query that selects all customer records. Hands-on-Lab Page 25

26 hive> EXPLAIN SELECT * FROM customer; Page 26 Hive DML

27 Can you tell how many MapReduce jobs would be required to run this Hive query? If you guessed none, you would be correct. Hive is able to read the records and dump the output to the console without using MapReduce. Hive is using local mode to do this. 1.7 Summary Congratulations! You now know how to load data into Hive. You are able to run a variety of queries using familiar clauses such as SELECT, WHERE, GROUP BY, ORDER BY, JOIN, and more. You can export data out of Hive and even run the Explain tool to get an execution plan for your query. You may move on to the next Unit. Hands-on-Lab Page 27

28 NOTES

29 NOTES

30 Copyright IBM Corporation The information contained in these materials is provided for informational purposes only, and is provided AS IS without warranty of any kind, express or implied. IBM shall not be responsible for any damages arising out of the use of, or otherwise related to, these materials. Nothing contained in these materials is intended to, nor shall have the effect of, creating any warranties or representations from IBM or its suppliers or licensors, or altering the terms and conditions of the applicable license agreement governing the use of IBM software. References in these materials to IBM products, programs, or services do not imply that they will be available in all countries in which IBM operates. This information is based on current IBM product plans and strategy, which are subject to change by IBM without notice. Product release dates and/or capabilities referenced in these materials may change at any time at IBM s sole discretion based on market opportunities or other factors, and are not intended to be a commitment to future product or feature availability in any way. IBM, the IBM logo and ibm.com are trademarks of International Business Machines Corp., registered in many jurisdictions worldwide. Other product and service names might be trademarks of IBM or other companies. A current list of IBM trademarks is available on the Web at Copyright and trademark information at

Using Hive for Data Warehousing

Using Hive for Data Warehousing An IBM Proof of Technology Using Hive for Data Warehousing Unit 3: Hive DML in action An IBM Proof of Technology Catalog Number Copyright IBM Corporation, 2013 US Government Users Restricted Rights - Use,

More information

Using Hive for Data Warehousing

Using Hive for Data Warehousing An IBM Proof of Technology Using Hive for Data Warehousing Unit 5: Hive Storage Formats An IBM Proof of Technology Catalog Number Copyright IBM Corporation, 2015 US Government Users Restricted Rights -

More information

Using Hive for Data Warehousing

Using Hive for Data Warehousing An IBM Proof of Technology Using Hive for Data Warehousing Unit 5: Hive Storage Formats An IBM Proof of Technology Catalog Number Copyright IBM Corporation, 2013 US Government Users Restricted Rights -

More information

Using Hive for Data Warehousing

Using Hive for Data Warehousing An IBM Proof of Technology Using Hive for Data Warehousing Unit 1: Exploring Hive An IBM Proof of Technology Catalog Number Copyright IBM Corporation, 2013 US Government Users Restricted Rights - Use,

More information

MapReduce & YARN Hands-on Lab Exercise 1 Simple MapReduce program in Java

MapReduce & YARN Hands-on Lab Exercise 1 Simple MapReduce program in Java MapReduce & YARN Hands-on Lab Exercise 1 Simple MapReduce program in Java Contents Page 1 Copyright IBM Corporation, 2015 US Government Users Restricted Rights - Use, duplication or disclosure restricted

More information

Hands-on Lab Session 9011 Working with Node.js Apps in IBM Bluemix. Pam Geiger, Bluemix Enablement

Hands-on Lab Session 9011 Working with Node.js Apps in IBM Bluemix. Pam Geiger, Bluemix Enablement Hands-on Lab Session 9011 Working with Node.js Apps in IBM Bluemix Pam Geiger, Bluemix Enablement Copyright IBM Corporation 2017 IBM, the IBM logo and ibm.com are trademarks of International Business Machines

More information

Hands-on Lab Session 9909 Introduction to Application Performance Management: Monitoring. Timothy Burris, Cloud Adoption & Technical Enablement

Hands-on Lab Session 9909 Introduction to Application Performance Management: Monitoring. Timothy Burris, Cloud Adoption & Technical Enablement Hands-on Lab Session 9909 Introduction to Application Performance Management: Monitoring Timothy Burris, Cloud Adoption & Technical Enablement Copyright IBM Corporation 2017 IBM, the IBM logo and ibm.com

More information

IBM Infrastructure Suite for z/vm and Linux: Introduction IBM Tivoli OMEGAMON XE on z/vm and Linux

IBM Infrastructure Suite for z/vm and Linux: Introduction IBM Tivoli OMEGAMON XE on z/vm and Linux IBM Infrastructure Suite for z/vm and Linux: Introduction IBM Tivoli OMEGAMON XE on z/vm and Linux August/September 2015 Please Note IBM s statements regarding its plans, directions, and intent are subject

More information

Innovate 2013 Automated Mobile Testing

Innovate 2013 Automated Mobile Testing Innovate 2013 Automated Mobile Testing Marc van Lint IBM Netherlands 2013 IBM Corporation Please note the following IBM s statements regarding its plans, directions, and intent are subject to change or

More information

Lab DSE Designing User Experience Concepts in Multi-Stream Configuration Management

Lab DSE Designing User Experience Concepts in Multi-Stream Configuration Management Lab DSE-5063 Designing User Experience Concepts in Multi-Stream Configuration Management February 2015 Please Note IBM s statements regarding its plans, directions, and intent are subject to change or

More information

IBM Software. IBM Forms V8.0. Forms Experience Builder - Portal Integration. Lab Exercise

IBM Software. IBM Forms V8.0. Forms Experience Builder - Portal Integration. Lab Exercise IBM Forms V8.0 Forms Experience Builder - Portal Integration Lab Exercise Catalog Number Copyright IBM Corporation, 2012 US Government Users Restricted Rights - Use, duplication or disclosure restricted

More information

InfoSphere Guardium 9.1 TechTalk Reporting 101

InfoSphere Guardium 9.1 TechTalk Reporting 101 InfoSphere Guardium 9.1 TechTalk Reporting 101 Click to add text Dario Kramer, Senior System Architect dariokramer@us.ibm.com 2013 IBM Corporation Acknowledgements and Disclaimers Availability. References

More information

MSS VSOC Portal Single Sign-On Using IBM id IBM Corporation

MSS VSOC Portal Single Sign-On Using IBM id IBM Corporation MSS VSOC Portal Single Sign-On Using IBM id Changes to VSOC Portal Sign In Page Users can continue to use the existing Client Sign In on the left and enter their existing Portal username and password.

More information

Reducing MIPS Using InfoSphere Optim Query Workload Tuner TDZ-2755A. Lloyd Matthews, U.S. Senate

Reducing MIPS Using InfoSphere Optim Query Workload Tuner TDZ-2755A. Lloyd Matthews, U.S. Senate Reducing MIPS Using InfoSphere Optim Query Workload Tuner TDZ-2755A Lloyd Matthews, U.S. Senate 0 Disclaimer Copyright IBM Corporation 2010. All rights reserved. U.S. Government Users Restricted Rights

More information

Lab: Hive Management

Lab: Hive Management Managing & Using Hive/HiveQL 2018 ABYRES Enterprise Technologies 1 of 30 1. Table of Contents 1. Table of Contents...2 2. Accessing Hive With Beeline...3 3. Accessing Hive With Squirrel SQL...4 4. Accessing

More information

Hands-on Lab Session 9020 Working with JSON Web Token. Budi Darmawan, Bluemix Enablement

Hands-on Lab Session 9020 Working with JSON Web Token. Budi Darmawan, Bluemix Enablement Hands-on Lab Session 9020 Working with JSON Web Token Budi Darmawan, Bluemix Enablement Copyright IBM Corporation 2017 IBM, the IBM logo and ibm.com are trademarks of International Business Machines Corp.,

More information

Optimizing Data Transformation with Db2 for z/os and Db2 Analytics Accelerator

Optimizing Data Transformation with Db2 for z/os and Db2 Analytics Accelerator Optimizing Data Transformation with Db2 for z/os and Db2 Analytics Accelerator Maryela Weihrauch, IBM Distinguished Engineer, WW Analytics on System z March, 2017 Please note IBM s statements regarding

More information

Hortonworks Data Platform

Hortonworks Data Platform Hortonworks Data Platform Workflow Management (August 31, 2017) docs.hortonworks.com Hortonworks Data Platform: Workflow Management Copyright 2012-2017 Hortonworks, Inc. Some rights reserved. The Hortonworks

More information

Aims. Background. This exercise aims to get you to:

Aims. Background. This exercise aims to get you to: Aims This exercise aims to get you to: Import data into HBase using bulk load Read MapReduce input from HBase and write MapReduce output to HBase Manage data using Hive Manage data using Pig Background

More information

IBM Security QRadar Version 7 Release 3. Community Edition IBM

IBM Security QRadar Version 7 Release 3. Community Edition IBM IBM Security QRadar Version 7 Release 3 Community Edition IBM Note Before you use this information and the product that it supports, read the information in Notices on page 7. Product information This

More information

Empowering DBA's with IBM Data Studio. Deb Jenson, Data Studio Product Manager,

Empowering DBA's with IBM Data Studio. Deb Jenson, Data Studio Product Manager, Empowering DBA's with IBM Data Studio Deb Jenson, Data Studio Product Manager, dejenson@us.ibm.com Disclaimer Copyright IBM Corporation [current year]. All rights reserved. U.S. Government Users Restricted

More information

IBM Financial Transactions Repository Version IBM Financial Transactions Repository Guide IBM

IBM Financial Transactions Repository Version IBM Financial Transactions Repository Guide IBM IBM Financial Transactions Repository Version 2.0.2 IBM Financial Transactions Repository Guide IBM Note Before using this information and the product it supports, read the information in Notices. Product

More information

Lotus Team Workplace. Version Installation and Upgrade Guide G

Lotus Team Workplace. Version Installation and Upgrade Guide G Lotus Team Workplace Version 6.5.1 Installation and Upgrade Guide G210-1658-00 Disclaimer THE INFORMATION CONTAINED IN THIS DOCUMENTATION IS PROVIDED FOR INFORMATIONAL PURPOSES ONLY. WHILE EFFORTS WERE

More information

In this exercise you will practice working with HDFS, the Hadoop. You will use the HDFS command line tool and the Hue File Browser

In this exercise you will practice working with HDFS, the Hadoop. You will use the HDFS command line tool and the Hue File Browser Access HDFS with Command Line and Hue Data Files (local): ~/labs/data/kb/* ~/labs/data/base_stations.tsv In this exercise you will practice working with HDFS, the Hadoop Distributed File System. You will

More information

IBM Spectrum LSF Process Manager Version 10 Release 1. Release Notes IBM GI

IBM Spectrum LSF Process Manager Version 10 Release 1. Release Notes IBM GI IBM Spectrum LSF Process Manager Version 10 Release 1 Release Notes IBM GI13-1891-04 IBM Spectrum LSF Process Manager Version 10 Release 1 Release Notes IBM GI13-1891-04 Note Before using this information

More information

Version 11 Release 0 May 31, IBM Interact - GDPR IBM

Version 11 Release 0 May 31, IBM Interact - GDPR IBM Version 11 Release 0 May 31, 2018 IBM Interact - GDPR IBM This edition applies to version 11.0 of IBM Interact and to all subsequent releases and modifications until otherwise indicated in new editions.

More information

IBM. Networking INETD. IBM i. Version 7.2

IBM. Networking INETD. IBM i. Version 7.2 IBM IBM i Networking INETD Version 7.2 IBM IBM i Networking INETD Version 7.2 Note Before using this information and the product it supports, read the information in Notices on page 5. This document may

More information

IBM Security Guardium

IBM Security Guardium IBM Security Guardium Version 10.1.4 Mapping Server IPs within IBM Security Guardium v10.1.4 instead of using the IBM License Metric Tool (ILMT) This document describes how to get the Server IP list for

More information

Analytics: Server Architect (Siebel 7.7)

Analytics: Server Architect (Siebel 7.7) Analytics: Server Architect (Siebel 7.7) Student Guide June 2005 Part # 10PO2-ASAS-07710 D44608GC10 Edition 1.0 D44917 Copyright 2005, 2006, Oracle. All rights reserved. Disclaimer This document contains

More information

Version 1.2 Tivoli Integrated Portal 2.2. Tivoli Integrated Portal Customization guide

Version 1.2 Tivoli Integrated Portal 2.2. Tivoli Integrated Portal Customization guide Version 1.2 Tivoli Integrated Portal 2.2 Tivoli Integrated Portal Customization guide Version 1.2 Tivoli Integrated Portal 2.2 Tivoli Integrated Portal Customization guide Note Before using this information

More information

IBM Workplace TM Collaboration Services

IBM Workplace TM Collaboration Services IBM Workplace TM Collaboration Services Version 2.5 Mobile Client Guide G210-1962-00 Terms of Use Disclaimer THE INFORMATION CONTAINED IN THIS DOCUMENTATION IS PROVIDED FOR INFORMATIONAL PURPOSES ONLY.

More information

WebSphere Partner Gateway v6.2.x: EDI TO XML Transformation With FA

WebSphere Partner Gateway v6.2.x: EDI TO XML Transformation With FA WebSphere Partner Gateway v6.2.x: EDI TO XML Transformation With FA Mike Glenn(v1mikeg@us.ibm.com) WPG L2 Support September 23, 2014 Agenda (1 of 3) Download EDI Standard Create XML Schema Use the DIS

More information

InfoSphere Warehouse with Power Systems and EMC CLARiiON Storage: Reference Architecture Summary

InfoSphere Warehouse with Power Systems and EMC CLARiiON Storage: Reference Architecture Summary InfoSphere Warehouse with Power Systems and EMC CLARiiON Storage: Reference Architecture Summary v1.0 January 8, 2010 Introduction This guide describes the highlights of a data warehouse reference architecture

More information

IBM Security Guardium Cloud Deployment Guide IBM SoftLayer

IBM Security Guardium Cloud Deployment Guide IBM SoftLayer IBM Security Guardium Cloud Deployment Guide IBM SoftLayer Deployment Procedure: 1. Navigate to https://control.softlayer.com 2. Log into your SoftLayer account 3. Using the SoftLayer menu, navigate to

More information

Veritas NetBackup Copilot for Oracle Configuration Guide. Release 2.7.2

Veritas NetBackup Copilot for Oracle Configuration Guide. Release 2.7.2 Veritas NetBackup Copilot for Oracle Configuration Guide Release 2.7.2 Veritas NetBackup Copilot for Oracle Configuration Guide Documentation version: 2.7.2 Legal Notice Copyright 2016 Veritas Technologies

More information

NetBackup Copilot for Oracle Configuration Guide. Release 2.7.1

NetBackup Copilot for Oracle Configuration Guide. Release 2.7.1 NetBackup Copilot for Oracle Configuration Guide Release 2.7.1 NetBackup Copilot for Oracle Configuration Guide Documentation version: 2.7.1 Legal Notice Copyright 2015 Symantec Corporation. All rights

More information

SAP NetWeaver on IBM Cloud Infrastructure Quick Reference Guide Microsoft Windows. December 2017 V2.0

SAP NetWeaver on IBM Cloud Infrastructure Quick Reference Guide Microsoft Windows. December 2017 V2.0 SAP NetWeaver on IBM Cloud Infrastructure Quick Reference Guide Microsoft Windows December 2017 V2.0 2 Copyright IBM Corp. 2017. All rights reserved. without prior written permission of IBM. Contents Purpose

More information

IBM i Version 7.2. Connecting to your system Connecting to Your system with IBM Navigator for i IBM

IBM i Version 7.2. Connecting to your system Connecting to Your system with IBM Navigator for i IBM IBM i Version 7.2 Connecting to your system Connecting to Your system with IBM Navigator for i IBM IBM i Version 7.2 Connecting to your system Connecting to Your system with IBM Navigator for i IBM Note

More information

Processing Big Data with Hadoop in Azure HDInsight

Processing Big Data with Hadoop in Azure HDInsight Processing Big Data with Hadoop in Azure HDInsight Lab 1 - Getting Started with HDInsight Overview In this lab, you will provision an HDInsight cluster. You will then run a sample MapReduce job on the

More information

Upgrading the DOORS and Change integration data to the OSLC-CM integration

Upgrading the DOORS and Change integration data to the OSLC-CM integration Upgrading the DOORS and Change integration data to the OSLC-CM integration Krishnakanth Naik Priyadarshini Rautray Yuvaraj Patil June 13, 2012 Page 1 of 31 INTRODUCTION...3 BENEFITS OF THE OSLC-CM INTEGRATION...5

More information

IBM InfoSphere Guardium

IBM InfoSphere Guardium IBM InfoSphere Guardium Version 9.5 Server IP Mapping for the IBM License Metric Tool (ILMT) This document describes how to get the Server IP list for each Guardium chargeable component (CC). PID 5725-I12

More information

IBM Db2 Open Data RESTful Support

IBM Db2 Open Data RESTful Support IBM Db2 Open Data RESTful Support George Baklarz December 6 th, 2017 simplify coding { "store" : "json", "call" : "RESTful", "code" : "OData", "exploit" : "relational", "get" : "results" } Data Without

More information

IBM Cognos Dynamic Query Analyzer Version Installation and Configuration Guide IBM

IBM Cognos Dynamic Query Analyzer Version Installation and Configuration Guide IBM IBM Cognos Dynamic Query Analyzer Version 11.0.0 Installation and Configuration Guide IBM Note Before using this information and the product it supports, read the information in Notices on page 7. Product

More information

Setup domino admin client by providing username server name and then providing the id file.

Setup domino admin client by providing username server name and then providing the id file. Main focus of this document is on the lotus domino 8 server with lotus sametime 8. Note: do not configure Web SSO, Ltpatoken, directory assistance and ldap configuration because they will be configured

More information

Oracle Cloud Using Oracle Big Data Manager. Release

Oracle Cloud Using Oracle Big Data Manager. Release Oracle Cloud Using Oracle Big Data Manager Release 18.2.1 E91848-07 April 2018 Oracle Cloud Using Oracle Big Data Manager, Release 18.2.1 E91848-07 Copyright 2018, 2018, Oracle and/or its affiliates. All

More information

Oracle Cloud Using Oracle Big Data Manager. Release

Oracle Cloud Using Oracle Big Data Manager. Release Oracle Cloud Using Oracle Big Data Manager Release 18.2.5 E91848-08 June 2018 Oracle Cloud Using Oracle Big Data Manager, Release 18.2.5 E91848-08 Copyright 2018, 2018, Oracle and/or its affiliates. All

More information

Ultimate Hadoop Developer Training

Ultimate Hadoop Developer Training First Edition Ultimate Hadoop Developer Training Lab Exercises edubrake.com Hadoop Architecture 2 Following are the exercises that the student need to finish, as required for the module Hadoop Architecture

More information

Lotusphere IBM Collaboration Solutions Development Lab

Lotusphere IBM Collaboration Solutions Development Lab Lotusphere 2012 IBM Collaboration Solutions Development Lab Lab#4 IBM Sametime Unified Telephony Lite telephony integration and integrated telephony presence with PBX 1 Introduction: IBM Sametime Unified

More information

Oracle Big Data Manager User s Guide. For Oracle Big Data Appliance

Oracle Big Data Manager User s Guide. For Oracle Big Data Appliance Oracle Big Data Manager User s Guide For Oracle Big Data Appliance E96163-02 June 2018 Oracle Big Data Manager User s Guide, For Oracle Big Data Appliance E96163-02 Copyright 2018, 2018, Oracle and/or

More information

IBM DB2 Analytics Accelerator for z/os, v2.1 Providing extreme performance for complex business analysis

IBM DB2 Analytics Accelerator for z/os, v2.1 Providing extreme performance for complex business analysis IBM DB2 Analytics Accelerator for z/os, v2.1 Providing extreme performance for complex business analysis Willie Favero IBM Silicon Valley Lab Data Warehousing on System z Swat Team Thursday, March 15,

More information

IBM Social Rendering Templates for Digital Data Connector

IBM Social Rendering Templates for Digital Data Connector IBM Social Rendering Templates for Digital Data Dr. Dieter Buehler Software Architect WebSphere Portal / IBM Web Content Manager Social Rendering Templates for DDC- Overview This package demonstrates how

More information

TPF Debugger / Toolkit update PUT 12 contributions!

TPF Debugger / Toolkit update PUT 12 contributions! TPF Debugger / Toolkit update PUT 12 contributions! Matt Gritter TPF Toolkit Technical Lead! IBM z/tpf April 12, 2016! Copyright IBM Corporation 2016. U.S. Government Users Restricted Rights - Use, duplication

More information

Version 1 Release 1 November IBM Social Marketing Solution Pack User's Guide IBM

Version 1 Release 1 November IBM Social Marketing Solution Pack User's Guide IBM Version 1 Release 1 November 2015 IBM Social Marketing Solution Pack User's Guide IBM Note Before using this information and the product it supports, read the information in Notices on page 7. This edition

More information

SIEBEL ANALYTICS USER GUIDE

SIEBEL ANALYTICS USER GUIDE SIEBEL ANALYTICS USER GUIDE VERSION 7.5, REV. C 12-F26S73 MARCH 2003 Siebel Systems, Inc., 2207 Bridgepointe Parkway, San Mateo, CA 94404 Copyright 2003 Siebel Systems, Inc. All rights reserved. Printed

More information

WebSphere Commerce Developer Professional

WebSphere Commerce Developer Professional Software Product Compatibility Reports Product WebSphere Commerce Developer Professional 8.0.1+ Contents Included in this report Operating systems Glossary Disclaimers Report data as of 2018-03-15 02:04:22

More information

Speaker Notes. IBM Software Group Rational software. Exporting records from ClearQuest

Speaker Notes. IBM Software Group Rational software. Exporting records from ClearQuest Speaker Notes IBM Software Group Rational software IBM Rational ClearQuest Exporting records from ClearQuest Updated October 23, 2007 This presentation will cover exporting records from IBM Rational ClearQuest.

More information

Hands-on Exercise Hadoop

Hands-on Exercise Hadoop Department of Economics and Business Administration Chair of Business Information Systems I Prof. Dr. Barbara Dinter Big Data Management Hands-on Exercise Hadoop Building and Testing a Hadoop Cluster by

More information

Product Overview Analyst s Notebook Analyst s Notebook is a standalone desktop product for a single user Allows quick collation and visualization of unstructured or structured data Incorporates powerful

More information

Version 9 Release 0. IBM i2 Analyst's Notebook Premium Configuration IBM

Version 9 Release 0. IBM i2 Analyst's Notebook Premium Configuration IBM Version 9 Release 0 IBM i2 Analyst's Notebook Premium Configuration IBM Note Before using this information and the product it supports, read the information in Notices on page 11. This edition applies

More information

IBM i Version 7.3. Database Administration IBM

IBM i Version 7.3. Database Administration IBM IBM i Version 7.3 Database Administration IBM IBM i Version 7.3 Database Administration IBM Note Before using this information and the product it supports, read the information in Notices on page 45.

More information

Veritas SaaS Backup for Office 365

Veritas SaaS Backup for Office 365 Veritas SaaS Backup for Office 365 Documentation version: 1.0 Legal Notice Copyright 2018 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo are trademarks or registered trademarks

More information

IBM Worklight V5.0.6 Getting Started

IBM Worklight V5.0.6 Getting Started IBM Worklight V5.0.6 Getting Started Creating your first Worklight application 17 January 2014 US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract

More information

Using Question/Answer Wizards and Process Slots to configure an RMC process/wbs

Using Question/Answer Wizards and Process Slots to configure an RMC process/wbs IBM Software Group Using Question/Answer Wizards and Process Slots to configure an RMC process/wbs Bruce MacIsaac Rational Method Composer Product Manager bmacisaa@us.ibm.com Agenda Process builder Process

More information

Version 9 Release 0. IBM i2 Analyst's Notebook Configuration IBM

Version 9 Release 0. IBM i2 Analyst's Notebook Configuration IBM Version 9 Release 0 IBM i2 Analyst's Notebook Configuration IBM Note Before using this information and the product it supports, read the information in Notices on page 11. This edition applies to version

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

SCREEN COMBINATION FEATURE IN HATS 7.0

SCREEN COMBINATION FEATURE IN HATS 7.0 SCREEN COMBINATION FEATURE IN HATS 7.0 This white paper provides details regarding screen combination feature in HATS 7.0. What is Screen combination in HATS 7.0? HATS 7.0 can combine together multiple

More information

IBM DB2 Query Patroller. Administration Guide. Version 7 SC

IBM DB2 Query Patroller. Administration Guide. Version 7 SC IBM DB2 Query Patroller Administration Guide Version 7 SC09-2958-00 IBM DB2 Query Patroller Administration Guide Version 7 SC09-2958-00 Before using this information and the product it supports, be sure

More information

WLAN Location Engine 2340 Using the Command Line Interface

WLAN Location Engine 2340 Using the Command Line Interface WLAN Location Engine 2340 Using the Command Line Interface Avaya WLAN 2300 Release 6.0 Document Status: Standard Document Number: NN47250-505 Document Version: 01.02 2010 Avaya Inc. All Rights Reserved.

More information

WP710 Language: English Additional languages: None specified Product: WebSphere Portal Release: 6.0

WP710 Language: English Additional languages: None specified Product: WebSphere Portal Release: 6.0 General information (in English): Code: WP710 Language: English Additional languages: Brand: Lotus Additional brands: None specified Product: WebSphere Portal Release: 6.0 WW region: WorldWide Target audience:

More information

Partitions. Make Administration on the Cloud more organized. Rajesh (Raj) Patil Girish Padmanabhan Rashmi Singh

Partitions. Make Administration on the Cloud more organized. Rajesh (Raj) Patil Girish Padmanabhan Rashmi Singh Partitions Make Administration on the Cloud more organized. Rajesh (Raj) Patil Girish Padmanabhan Rashmi Singh Please note IBM s statements regarding its plans, directions, and intent are subject to change

More information

Sandbox Setup Guide for HDP 2.2 and VMware

Sandbox Setup Guide for HDP 2.2 and VMware Waterline Data Inventory Sandbox Setup Guide for HDP 2.2 and VMware Product Version 2.0 Document Version 10.15.2015 2014-2015 Waterline Data, Inc. All rights reserved. All other trademarks are the property

More information

Netcool/Impact Version Release Notes GI

Netcool/Impact Version Release Notes GI Netcool/Impact Version 6.1.0.1 Release Notes GI11-8131-03 Netcool/Impact Version 6.1.0.1 Release Notes GI11-8131-03 Note Before using this information and the product it supports, read the information

More information

IBM DB Getting started with Data Studio Hands-On Lab. Information Management Cloud Computing Center of Competence.

IBM DB Getting started with Data Studio Hands-On Lab. Information Management Cloud Computing Center of Competence. IBM DB2 9.7 Getting started with Data Studio Hands-On Lab I Information Management Cloud Computing Center of Competence IBM Canada Lab Contents 1. INTRODUCTION...2 2. OBJECTIVES...2 3. SUGGESTED READING...3

More information

Lab 2A> ADDING USERS in Linux

Lab 2A> ADDING USERS in Linux Lab 2A> ADDING USERS in Linux Objective In this lab, student will learn how to create user accounts using the Linux operating system. Scenario The XYZ Company has just installed a server running Linux.

More information

z/tpf APAR Download Commands 1.1

z/tpf APAR Download Commands 1.1 z/tpf APAR Download Commands 1.1 NOTE: Before using this information and the product it supports, read the general information under "NOTICES" in this document. CONTENTS This file includes the following

More information

Unix/Linux Basics. Cpt S 223, Fall 2007 Copyright: Washington State University

Unix/Linux Basics. Cpt S 223, Fall 2007 Copyright: Washington State University Unix/Linux Basics 1 Some basics to remember Everything is case sensitive Eg., you can have two different files of the same name but different case in the same folder Console-driven (same as terminal )

More information

Veritas SaaS Backup for Salesforce

Veritas SaaS Backup for Salesforce Veritas SaaS Backup for Salesforce Documentation version: 2.0 Legal Notice Copyright 2018 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo are trademarks or registered trademarks

More information

HP Database and Middleware Automation

HP Database and Middleware Automation HP Database and Middleware Automation For Windows Software Version: 10.10 SQL Server Database Refresh User Guide Document Release Date: June 2013 Software Release Date: June 2013 Legal Notices Warranty

More information

HBase Installation and Configuration

HBase Installation and Configuration Aims This exercise aims to get you to: Install and configure HBase Manage data using HBase Shell Install and configure Hive Manage data using Hive HBase Installation and Configuration 1. Download HBase

More information

DISCLAIMER COPYRIGHT List of Trademarks

DISCLAIMER COPYRIGHT List of Trademarks DISCLAIMER This documentation is provided for reference purposes only. While efforts were made to verify the completeness and accuracy of the information contained in this documentation, this documentation

More information

IBM Blockchain IBM Blockchain Developing Applications Workshop - Node-Red Integration

IBM Blockchain IBM Blockchain Developing Applications Workshop - Node-Red Integration IBM Blockchain Developing Applications Workshop - Node-Red Integration Exercise Guide Contents INSTALLING COMPOSER NODE-RED NODES... 4 INTEGRATE NODE-RED WITH COMPOSER BUSINESS NETWORK... 7 APPENDIX A.

More information

ISAM Advanced Access Control

ISAM Advanced Access Control ISAM Advanced Access Control CONFIGURING TIME-BASED ONE TIME PASSWORD Nicholas J. Hasten ISAM L2 Support Tuesday, November 1, 2016 One Time Password OTP is a password that is valid for only one login session

More information

IBM i 7.3 Features for SAP clients A sortiment of enhancements

IBM i 7.3 Features for SAP clients A sortiment of enhancements IBM i 7.3 Features for SAP clients A sortiment of enhancements Scott Forstie DB2 for i Business Architect Eric Kass SAP on IBM i Database Driver and Kernel Engineer Agenda Independent ASP Vary on improvements

More information

Ensuring a smooth upgrade to Sametime and IFR 1

Ensuring a smooth upgrade to Sametime and IFR 1 Ensuring a smooth upgrade to Sametime 8.5.2 and 8.5.2 IFR 1 Tony Payne, Sametime L3 February 29,2012 2011 IBM Corporation Agenda Plan Prepare Execute Troubleshoot Validate Known Fixes 2011 IBM Corporation

More information

Cloudera Manager Quick Start Guide

Cloudera Manager Quick Start Guide Cloudera Manager Guide Important Notice (c) 2010-2015 Cloudera, Inc. All rights reserved. Cloudera, the Cloudera logo, Cloudera Impala, and any other product or service names or slogans contained in this

More information

Sterling Selling and Fulfillment Suite Developer Toolkit FAQs

Sterling Selling and Fulfillment Suite Developer Toolkit FAQs Sterling Selling and Fulfillment Suite Developer Toolkit FAQs Sterling Order Management Sterling Configure, Price, Quote Sterling Warehouse Management System September 2012 Copyright IBM Corporation, 2012.

More information

BlueMix Hands-On Workshop

BlueMix Hands-On Workshop BlueMix Hands-On Workshop Lab E - Using the Blu Big SQL application uemix MapReduce Service to build an IBM Version : 3.00 Last modification date : 05/ /11/2014 Owner : IBM Ecosystem Development Table

More information

IBM Operational Decision Manager. Version Sample deployment for Operational Decision Manager for z/os artifact migration

IBM Operational Decision Manager. Version Sample deployment for Operational Decision Manager for z/os artifact migration IBM Operational Decision Manager Version 8.7.0 Sample deployment for Operational Decision Manager for z/os artifact migration Copyright IBM Corporation 2014 This edition applies to version 8, release 7

More information

Db2 Analytics Accelerator V5.1 What s new in PTF 5

Db2 Analytics Accelerator V5.1 What s new in PTF 5 Ute Baumbach, Christopher Watson IBM Boeblingen Laboratory Db2 Analytics Accelerator V5.1 What s new in PTF 5 Legal Disclaimer IBM Corporation 2017. All Rights Reserved. The information contained in this

More information

WebSphere Commerce Professional

WebSphere Commerce Professional Software Product Compatibility Reports Product WebSphere Commerce Professional 8.0.1+ Contents Included in this report Operating systems Glossary Disclaimers Report data as of 2018-03-15 02:04:22 CDT 1

More information

Veritas NetBackup Backup, Archive, and Restore Getting Started Guide. Release 8.1.2

Veritas NetBackup Backup, Archive, and Restore Getting Started Guide. Release 8.1.2 Veritas NetBackup Backup, Archive, and Restore Getting Started Guide Release 8.1.2 Veritas NetBackup Backup, Archive, and Restore Getting Started Guide Last updated: 2018-09-19 Legal Notice Copyright 2017

More information

IBM Networking OS. BBI Quick Guide. for the EN2092 1Gb Ethernet Scalable Switch, Second edition (replaces 88Y7949)

IBM Networking OS. BBI Quick Guide. for the EN2092 1Gb Ethernet Scalable Switch, Second edition (replaces 88Y7949) IBM Networking OS BBI Quick Guide for the EN2092 1Gb Ethernet Scalable Switch, Second edition (replaces 88Y7949) IBM Networking OS BBI Quick Guide for the EN2092 1Gb Ethernet Scalable Switch, Second edition

More information

System p. Partitioning with the Integrated Virtualization Manager

System p. Partitioning with the Integrated Virtualization Manager System p Partitioning with the Integrated Virtualization Manager System p Partitioning with the Integrated Virtualization Manager Note Before using this information and the product it supports, read the

More information

How to Modernize the IMS Queries Landscape with IDAA

How to Modernize the IMS Queries Landscape with IDAA How to Modernize the IMS Queries Landscape with IDAA Session C12 Deepak Kohli IBM Senior Software Engineer deepakk@us.ibm.com * IMS Technical Symposium Acknowledgements and Disclaimers Availability. References

More information

IBM XIV Provider for Microsoft Windows Volume Shadow Copy Service. Version 2.3.x. Installation Guide. Publication: GC (August 2011)

IBM XIV Provider for Microsoft Windows Volume Shadow Copy Service. Version 2.3.x. Installation Guide. Publication: GC (August 2011) IBM XIV Provider for Microsoft Windows Volume Shadow Copy Service Version 2.3.x Installation Guide Publication: GC27-3920-00 (August 2011) Note: Before using this document and the products it supports,

More information

Tivoli Web Solutions. Upgrade Notes

Tivoli Web Solutions. Upgrade Notes Tivoli Web Solutions Upgrade Notes Tivoli Web Solutions Upgrade Notes Note Before using this information and the product it supports, read the information in Notices on page 7. IBM Tivoli Web Solutions

More information

IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3.1 April 07, Integration Guide IBM

IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3.1 April 07, Integration Guide IBM IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3.1 April 07, 2017 Integration Guide IBM Note Before using this information and the product it supports, read the information

More information

Sage Installation and Administration Guide. May 2018

Sage Installation and Administration Guide. May 2018 Sage 300 2019 Installation and Administration Guide May 2018 This is a publication of Sage Software, Inc. 2018 The Sage Group plc or its licensors. All rights reserved. Sage, Sage logos, and Sage product

More information

Introduction to Hive. Feng Li School of Statistics and Mathematics Central University of Finance and Economics

Introduction to Hive. Feng Li School of Statistics and Mathematics Central University of Finance and Economics Introduction to Hive Feng Li feng.li@cufe.edu.cn School of Statistics and Mathematics Central University of Finance and Economics Revised on December 14, 2017 Today we are going to learn... 1 Introduction

More information

IBM Operational Decision Manager Version 8 Release 5. Configuring Operational Decision Manager on Java SE

IBM Operational Decision Manager Version 8 Release 5. Configuring Operational Decision Manager on Java SE IBM Operational Decision Manager Version 8 Release 5 Configuring Operational Decision Manager on Java SE Note Before using this information and the product it supports, read the information in Notices

More information