I have an OLAP Basically there is a dimension that has parent-child relationship. So the dimension has a parent-id and a child-id.

There is a fact table that exists that has the child-id. I would like to get data for a child and all its given children when I provide the parent id.

How could I achieve this in a MDX query ?

 <Dimension foreignKey="child_id"  name="SUPPLIER">
  <Hierarchy hasAll="true" allMemberName="all" allMemberCaption="all" primaryKey="child_id" >
    <Table name="suppliers">
    </Table>
    <Level name="SUPPLIER_L"  column="child_id" nameColumn="child_id" parentColumn="parent_id"  
    uniqueMembers="true" levelType="Regular" hideMemberIf="Never" >
    </Level>
  </Hierarchy>
</Dimension>

I have my dimension where this hierarchy occurs.

link|improve this question

59% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Take a look at the DESCENDANT MDX function.

You just say where you want to start in the hierachy and then where you want to stop at what level. Then it will give you all the level between start and end points.

Post the part of your mondrian schema cube so I can give you the exact syntax

link|improve this answer
I have added the part of my cube. Please do look into it. thanks – Anand Dec 14 '10 at 12:31
@Anand : Is it normal that your dimension has just one level ? From what you gave me all I can get is this hierarchy Parent -> Child, no deeper. Is that what you want ? – Spredzy Dec 14 '10 at 13:01
What i am saying is that a child could in turn have a child and that in turn could have a child. So given a node, I must be able to retierve all child nodes, chidren of those children and so on the whole hierarchy – Anand Dec 15 '10 at 15:07
feedback

The following MDX should give you the sub-tree under 'your-parent-id' :

SELECT [Measures].[your-measure] on 0, Descendants( [Supplier].&[your-parent-id], [Supplier].&[your-parent-id].level, SELF_AND_AFTER) ON 1 FROM [your-cube]

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.