Book Image

Pentaho 3.2 Data Integration: Beginner's Guide

Book Image

Pentaho 3.2 Data Integration: Beginner's Guide

Overview of this book

Pentaho Data Integration (a.k.a. Kettle) is a full-featured open source ETL (Extract, Transform, and Load) solution. Although PDI is a feature-rich tool, effectively capturing, manipulating, cleansing, transferring, and loading data can get complicated.This book is full of practical examples that will help you to take advantage of Pentaho Data Integration's graphical, drag-and-drop design environment. You will quickly get started with Pentaho Data Integration by following the step-by-step guidance in this book. The useful tips in this book will encourage you to exploit powerful features of Pentaho Data Integration and perform ETL operations with ease.Starting with the installation of the PDI software, this book will teach you all the key PDI concepts. Each chapter introduces new features, allowing you to gradually get involved with the tool. First, you will learn to work with plain files, and to do all kinds of data manipulation. Then, the book gives you a primer on databases and teaches you how to work with databases inside PDI. Not only that, you'll be given an introduction to data warehouse concepts and you will learn to load data in a data warehouse. After that, you will learn to implement simple and complex processes.Once you've learned all the basics, you will build a simple datamart that will serve to reinforce all the concepts learned through the book.
Table of Contents (27 chapters)
Pentaho 3.2 Data Integration Beginner's Guide
Credits
Foreword
The Kettle Project
About the Author
About the Reviewers
Preface
Index

Time for action – loading the sales fact table by looking up dimensions


Let's load the sales fact table, ft_sales, with sales information for a given range of dates. Before doing this exercise, be sure that you have already loaded the dimensions. You did it in the previous tutorial.

Also check that the database engine is up and that both the js and the js_dw databases are accessible from PDI. If everything is in order, you are ready to start:

  1. Create a new transformation.

  2. Drag a Table input step to the canvas.

  3. Double-click the step. Select js as Connection—the connection to the operational database.

  4. In the SQL frame type the following query:

    SELECT i.inv_date
          ,d.man_code
          ,cu.city_id
          ,pr.pro_type      product_type
          ,b.buy_desc
          ,p.pay_desc
          ,sum(d.cant_prod) quantity
          ,sum(d.price)     amount
    FROM   invoices         i
          ,invoices_detail  d
          ,customers        cu
          ,buy_methods      b
          ,payment_methods  p
          ,products         pr
    WHERE i.invoice_number...