Dimension (MDX)
SQL Server 2012
Returns the hierarchy that contains a specified member, level, or hierarchy.
Examples
The following example uses the Dimension function, in conjunction with the Name function, to return the hierarchy name of the specified member.
WITH member measures.x as [Product].[Product Model Lines].[Model].&[HL Road Tire].Dimension.Name SELECT measures.x on 0 FROM [Adventure Works]
The following example uses the Dimension function, in conjunction with the Levels and the Count functions, to return the number of levels in the hierarchy containing the specified member.
WITH member measures.x as [Product].[Product Model Lines].[Model].&[HL Road Tire].Dimension.Levels.Count SELECT measures.x on 0 FROM [Adventure Works]
The following example uses the Dimension function, in conjunction with the Members and the Count functions, to return the number of members in the hierarchy containing the specified member.
WITH member measures.x as [Product].[Product Model Lines].[Model].&[HL Road Tire].Dimension.Members.Count SELECT measures.x on 0 FROM [Adventure Works]
