You are developing a Microsoft SQL Server 2005 Analysis Services (SSAS) project.
You have a cube named SalesCube that contains the following objects:
Answer(s)
- measure group named Sales that contains a measure named Internet Sales Amount.A dimension named DimProduct that contains a hierarchy named Product Category. Thehierarchy contains the Category attribute on the first level, the Subcategory attribute on thesecond level, and the Product attribute on the third level.MaintenanceYou need to write a Multidimensional Expressions (MDX) query that displays only the productnames and the Internet sales amount for each product.Which query should you use?A - select [Sales].[lnternet Sales Amount] on columns,[DimProduct].[Product Category].[Product].members on rowsfrom [SalesCube];
- - select [Sales].[lnternet Sales Amount] on columns,[DimProduct].[Product Category].[Subcategory].members on rowsfrom [SalesCube];
- - select [Sales].[Internet Sales Amount] on columns,[DimProduct].[Product Category].memberson rowsfrom [SalesCube];
- - select [Sales].[lnternet Sales Amount] on columns,[DimProduct].[Product Category].&[3] onrowsfrom [SalesCube];
Correct Answer measure group named Sales that contains a measure named Internet Sales Amount.A dimension named DimProduct that contains a hierarchy named Product Category. Thehierarchy contains the Category attribute on the first level, the Subcategory attribute on thesecond level, and the Product attribute on the third level.MaintenanceYou need to write a Multidimensional Expressions (MDX) query that displays only the productnames and the Internet sales amount for each product.Which query should you use?A - select [Sales].[lnternet Sales Amount] on columns,[DimProduct].[Product Category].[Product].members on rowsfrom [SalesCube];