Set Functions: The .AllMembers Function - Page 2December 7, 2007 Procedure: Use the .AllMembers Function to Filter a Dataset to Meet a Business Need Having demonstrated the basic operation of .AllMembers, we are ready to address another requirement to which the client representatives have referred in earlier conversations. To detail the requirement, our colleagues have asked us to address a specific, immediate need, although they hope to be able to extrapolate the concepts we introduce to other, similar needs that continually arise within the organization. The authors / developers have asked that we construct a query that presents all measures (including calculated members / measures) for each of the Product Categories offered by the organization for their current and prior year (2004 and 2003, respectively), presented by Product Category, and subanalyzed by Customer Country. Our colleagues explain that management is attempting to perform analysis upon the Categories, specifically within the context of the contribution of each Customer Country toward the totals for each Category value. While management will likely prune the measures presented to a smaller subset going forward, the initial exercise will allow them to see all measures, including calculations, for the purpose of considering each for relevance, before deciding which to eliminate from prospective presentations. The client representatives assure us that, once they understand the concepts, they will seek to extend, or otherwise modify, and parameterize various parts of this (or a similar) query, within reports they will later create using Reporting Services, but that this example will suffice for now. Because the initial business requirement entails working with all measures (all members of the Measure dimension, as it were), we explain that .AllMembers promises to be useful in generating the desired presentation. We confirm our understanding of the foregoing needs, as well as our conclusion that we have happened upon a great opportunity to both assist the client in meeting its immediate needs and to provide examples that leverage the MDX .AllMembers function. We set out to craft a query that relies upon .AllMembers, in conjunction with a couple of other the MDX functions, to meet the business need. 1. Select File --> New from the main menu, once again. 2. Select Query with Current Connection from the cascading menu that appears next, as depicted in Illustration 5.
A new tab, with a connection to the Adventure Works cube (we can see it listed in the selector of the Metadata pane, once again) appears in the Query pane. 3. Type (or cut and paste) the following query into the Query pane:
-- MDX061-2: Basic Use of .ALLMEMBERS Function; Measure Dimension
SELECT
CROSSJOIN(
{[Measures].ALLMEMBERS},
{[Date].[Calendar Year].[CY 2004]:[Date].[Calendar Year].[CY 2003]})
ON AXIS (0),
CROSSJOIN(
{[Product].[Product Categories].CHILDREN},
[Customer].[Country].[Country].MEMBERS
ON AXIS (1)
FROM
[Adventure Works]
The Query pane appears, with our input, as shown in Illustration 6.
4. Execute the query by clicking the Execute button in the toolbar. The Results pane is, once again, populated by Analysis Services. This time, the dataset partially depicted in Illustration 7 appears.
In the returned dataset, we see the juxtaposed Years (2003 and 2004), which we generate via the MDX Range operator (:) and all measures within the cube including calculated members / measures, which we deliver via the .AllMembers function. Moreover, we leverage the .Children and .Members functions to specify a row axis containing Product Categories, which we further subanalyze by Customer Country. We perform the desired juxtapositions within the query via the CrossJoin() function. Of primary focus within our practice example is our use of the .AllMembers function, in conjunction with these other functions, to return all measures in effect, all members of the Measures dimension. (We can easily verify operation by observing that all measures within the cube appear within the dataset we can scroll over to see that all measures are present.) In this example, we can also see another characteristic of the behavior of .AllMembers in cases where a dimension contains only a single visible hierarchy: in such cases, the hierarchy can be referenced by the hierarchy name or the dimension name, because the dimension name in such a scenario is resolved to its only visible hierarchy. In our immediate example, Measures.AllMembers is a valid MDX expression because it resolves to the only hierarchy in the Measures dimension. NOTE: For more detail surrounding the CrossJoin() function, see Basic Set Functions: The CrossJoin() Function. For information on the .Children function, see MDX Member Functions: The "Family" Functions. For an introduction to the .Members function, see my article MDX Members: Introducing Members and Member. Finally, for a discussion of the Range operator, see my article MDX Operators: The Basics. All articles are members of my MDX Essentials series at Database Journal. 5. Select File -> Save MDXQuery2.mdx As ..., name the file MDX061-002.mdx, and place it in the same location used to store the earlier query The client developers and report authors express satisfaction with the results, and confirm their understanding of the operation of the .AllMembers function within the context we have presented, among other uses we have discussed in earlier sections. We suggest to our client colleagues that, among numerous possibilities, the Years (beginning and ending, for that matter) might be parameterized, that we might build in the capability to swap crossjoined members, and that we might add other capabilities within the ultimate reporting dataset query. Suffice it to say that, assuming a thorough knowledge of the various layers of the Microsoft integrated BI solution, one can obtain many powerful capabilities and features, and knowing where to put the intelligence within the sometimes multiple choices can mean highly tuned performance and effective solutions for consumers throughout our organizations. For more of my observations on this subject see Multi-Layered Business Solutions ... Require Multi-Layered Architects. 6. Select File -> Exit to leave the SQL Server Management Studio, when ready. Summary ...In this article, we explored the MDX .AllMembers function, whose general purpose is to return a set composed of all members within a specified dimensional level or hierarchy. The set returned includes all calculated members contained within the specified level or hierarchy. We examined the syntax involved with .AllMembers, and then undertook a couple of illustrative practice examples of uses for the function, generating queries that capitalized upon its capabilities. Throughout our practice session, we briefly discussed the results datasets we obtained from each of the queries we constructed, as well as extending our discussion to other possible options and uses for the concepts we exposed. » See All Articles by Columnist William E. Pearson, III Discuss this article in the MSSQL Server 2000 Analysis Services and MDX Topics Forum. MDX Essentials Series
The LEVEL_NUMBER Member Property
The LEVEL_UNIQUE_NAME Intrinsic Member Property Intrinsic Member Properties: The HIERARCHY_UNIQUE_NAME Property Intrinsic Member Properties: The DIMENSION_UNIQUE_NAME Property Further Combination of BottomCount() with Other MDX Functions Combine BottomCount() with Other MDX Functions to Add Sophistication Basic Set Functions: The BottomCount() Function, Part I Intrinsic Member Properties: The MEMBER_VALUE Property Intrinsic Member Properties: The MEMBER_UNIQUE_NAME Property Intrinsic Member Properties: The MEMBER_NAME Property Intrinsic Member Properties: The MEMBER_KEY Property Intrinsic Member Properties: The MEMBER_CAPTION Property Set Functions: The StripCalculatedMembers() Function Set Functions: The AddCalculatedMembers() Function MDX Numeric Functions: The Min() Function MDX Numeric Functions: The Max() Function Set Functions: The .AllMembers Function MDX Essentials: Set Functions: The MeasureGroupMeasures() Function String Functions: The .Properties Function, Part II String Functions: The .Properties Function Logical Functions: IsGeneration(): Conditional Logic within Filter Expressions MDX Scripting Statements: Introducing the Simple CASE Statement Logical Functions: IsGeneration(): Conditional Logic within Calculations Logical Functions: IsAncestor(): Conditional Logic within Filter Expressions MDX Clauses and Keywords: Use HAVING to Filter an Axis Logical Functions: IsAncestor(): Conditional Logic within Calculations Logical Functions: IsSibling(): Conditional Logic within Filter Expressions Logical Functions: IsSibling(): Conditional Logic within Calculations MDX Operators: The IsLeaf() Operator: Conditional Logic within Filter Expressions MDX Operators: The IsLeaf() Operator: Conditional Logic within Calculations MDX Numeric Functions: The .Ordinal Function Other MDX Entities: Perspectives MDX Operators: The IS Operator MDX Set Functions: The Distinct() Function MDX Set Functions: The ToggleDrillState() Function Set Functions: The DrillUpLevel() Function Set Functions: The DrillDownLevelTop() and DrillDownLevelBottom() Functions MDX Set Functions: DrillDownLevel() MDX Set Functions: The DRILLUPMEMBER() Function MDX Essentials: Set Functions: The DRILLDOWNMEMBERTOP() and DRILLDOWNMEMBERBOTTOM() Functions MDX Essentials : Set Functions: The DRILLDOWNMEMBER() Function MDX Essentials: Drilling Through with MDX: The DRILLTHROUGH Statement MDX Essentials: String Functions: The .UniqueName Function MDX Essentials: String Functions: The .Name Function MDX Essentials: String / Numeric Functions: The CoalesceEmpty() Function MDX Essentials: Basic Set Functions: The TopCount() Function, Part II MDX Essentials: Basic Set Functions: The TopCount() Function, Part I MDX Essentials: Enhancing CROSSJOIN() with Calculated Members MDX Essentials: Set and String Functions: The GENERATE() Function MDX Essentials: The CROSSJOIN() Function: Breaking Bottlenecks MDX Essentials: String / Numeric Functions: More on the IIF() Function MDX Essentials: String / Numeric Functions: Introducing the IIF() Function MDX Essentials: Logical Functions: The IsEmpty() Function MDX Essentials: Basic Set Functions: The EXTRACT() Function MDX Essentials: Numeric Functions: Introduction to the AVG() Function MDX Essentials: Basic Member Functions: The .Item() Function MDX Essentials: Basic Set Functions: Subset Functions: The Subset() Function MDX Essentials: Basic Set Functions: Subset Functions: The Tail() Function MDX Essentials: Basic Set Functions: Subset Functions: The Head() Function MDX Essentials: Basic Set Functions: The CrossJoin() Function MDX Essentials: Basic Numeric Functions: The Count() Function MDX Essentials: Basic Set Functions: The Filter() Function MDX Essentials: Basic Set Functions: The EXCEPT() Function MDX Essentials: Basic Set Functions: The Intersect() Function MDX Essentials: Basic Set Functions: The Union() Function MDX Essentials: Basic Set Functions: The Order() Function MDX Essentials - MDX Time Series Functions, Part III: The LastPeriods() and ParallelPeriod() Functions MDX Time Series Functions, Part II: The OpeningPeriod () and ClosingPeriod() Functions MDX Essentials - MDX Time Series Functions, Part I: PeriodsToDate() and Kindred Functions MDX Essentials: MDX Member Functions: "Relative" Member Functions MDX Member Functions: The Cousin () Function MDX Essentials: Member Functions: More "Family" Functions MDX Member Functions: The "Family" Functions MDX Essentials: MDX Members: Introducing Members and Member MDX Essentials : MDX Operators: The Basics MDX Essentials: Structure of the MDX Data Model MDX at First Glance: Introduction to SQL Server MDX Essentials |