views:

17

answers:

1

I have one data warehouse table that contain one row for each item sold.
Each row contains the item's type.

What MDX request could show the number of items sold for each item type?
What (dimensions,levels,etc) would it suppose to create?

In case it is relevant, I am using Pentaho/Mondrian/Spoon/Schema Workbench.

+1  A: 

When you build a cube from the data warehouse you would typically aggregate rows for each product sale into totals for groups of one hour, or one day, per product. Few big cubes would support drilling down to individual product sales.

After creating a [Product] hierarchy/dimension you would create a virtual dimension based on that, using the item types, to give another way of breaking the information down.

Magnus Smith