Book Image

ADempiere 3.6 Cookbook

Book Image

ADempiere 3.6 Cookbook

Overview of this book

Table of Contents (16 chapters)
ADempiere 3.6 Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface

Defining analysis cube


Schema and cube is defined in the following way on Mondrian's documentation page—http://mondrian.pentaho.com/documentation/schema.php:

A schema defines a multi-dimensional database. It contains a logical model, consisting of cubes, hierarchies, and members, and a mapping of this model onto a physical model.

The logical model consists of the constructs used to write queries in MDX language: cubes, dimensions, hierarchies, levels, and members.

The physical model is the source of the data which is presented through the logical model.

Cube is a basic construct of Data Warehousing discussion of which is out of this book's scope as there are numerous books existing on this topic and explaining it here may not be a good idea.

In a nutshell, the steps to perform data analysis in Mondrian require us to define a cube, use that cube to define the MDX query, and use the query in the analysis. In this chapter, we will learn how to define a cube using the ADempiere database. In order...