Book Image

Hands-On Dashboard Development with QlikView

By : Abhishek Agarwal
Book Image

Hands-On Dashboard Development with QlikView

By: Abhishek Agarwal

Overview of this book

QlikView is one of the market leaders when it comes to building effective Business Intelligence solutions. This book will show how you can leverage its power to build your own dashboards to tell your own data story. The book starts with showing you how to connect your data to QlikView and create your own QlikView application. You will learn how to add data from multiple sources, create a data model by joining data, and then review it on the front end. You will work with QlikView components such as charts, list boxes, input boxes, and text objects to create stunning visualizations that help give actionable business insights. You will also learn how to perform analysis on your data in QlikView and master the various types of security measures to be taken in QlikView. By the end of this book, you will have all the essential knowledge required for insightful data storytelling and creating useful BI dashboards using QlikView.
Table of Contents (9 chapters)

Creating a star schema

First, let's look at the two types of schema available for data models, namely:

  • The star schema
  • The snowflake schema

The star schema looks exactly like a star in its function. The following diagram represents a star schema:

In this schema, you have one FACT table in the middle, which contains all your measures, and all the associated tables, such as dimensions, are connected to that FACT table. The structure that they create is similar to a star, as seen in the preceding diagram.

The star schema is a preferred choice for QlikView dashboard development, because all the dimension tables are connected to the central fact table, and so, querying the data becomes very easy. If you query the data, the engine just has to reach to the required dimension table and ignore the other tables that are connected to the fact table.

The snowflake schema is more...