exam questions

Exam 70-768 All Questions

View all questions & answers for the 70-768 exam

Exam 70-768 topic 1 question 17 discussion

Actual exam question from Microsoft's 70-768
Question #: 17
Topic #: 1
[All 70-768 Questions]

DRAG DROP -
You are a business analyst for a retail company that uses a Microsoft SQL Server Analysis Services (SSAS) multidimensional database to track sales. The database contains the following objects:

Your company is developing a promotional plaque to recognize the top resellers in the top 10 cities where the company does business. Each plaque must display the sales total for all resellers in the city. In addition, the plaque must display a total for all cities not in the top 10.
You have the following requirements:
✑ You must use total sales for a city to determine the top cities.
✑ You must specify a color and material for each plaque. The color and materials used will be different for the resellers in each city, and will be based on how the total for a city compares to other cities in the top 10 list.
You need to provide the information needed for the promotional plaques.
How should you complete the MDX statement? To answer, drag the appropriate MDX segments to the correct locations. Each MDX segment may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.
NOTE: Each correct selection is worth one point.
Select and Place:

Show Suggested Answer Hide Answer
Suggested Answer:
Box 1:DYNAMIC SET -

Box 2:MEMBER -

Box 3:DYNAMIC SET -
Box 4:[Geography].[City].[City].members
Box 5:[Measures].[Reseller Sales Amount]
Reference: https://docs.microsoft.com/en-us/sql/mdx/aggregate-mdx

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
Anette
Highly Voted 4 years, 11 months ago
Box 4 and 5 are wrong, correct answer is: 4 - Member 5 - [Geography].[City].CurrentMember
upvoted 8 times
...
STH
Highly Voted 5 years, 12 months ago
[Measure].[Rank] is a MEMBER
upvoted 7 times
...
DudeHere
Most Recent 4 years, 5 months ago
UPDATE: DYNMIC SET MEMBER DYNAMIC SET MEMBER [Geography].[City].CURRENTMEMBER https://sqldusty.com/2014/08/18/the-mdx-rank-function/ with dynamic set [Top 5 Customers] as Topcount( [Customer].[Customer].[Customer].members, 5, [Measures].[Internet Sales Amount] ) member [Customer].[Customer].[Others] as Aggregate( Except( [Customer].[Customer].[Customer].members, [Top 5 Customers] ) ) dynamic set [Top 5 & Others] as { [Top 5 Customers], [Customer].[Customer].[Others] } member [Measures].[Rank] as Rank([Customer].[Customer].CURRENTMEMBER,[Top 5 & Others]) Select {[Measures].[Internet Sales Amount],[Measures].[Rank]} on 0, [Top 5 & Others] on 1 From [Adventure Works]
upvoted 1 times
...
DudeHere
4 years, 5 months ago
DYNAMIC SET MEMBER DYNAMIC SET MEMBER [Geography].[City].CurrentMember
upvoted 3 times
...
CYRUSD
5 years ago
Box4: [Geography].[City].currentmembers
upvoted 1 times
CYRUSD
5 years ago
Sorry Box5: With Dynamic SET [Top 10] AS TOP COUNT( [Geography].[City].[City].members, 10, [Measures].[Reseller Sales Amount] ) Member [Geography].[City].Others AS Aggregate ( Except ( [Geography].[City].[City].Members, [Top 10] ) ) Dynamic SET [ALL] AS {[Top 10],[Geography].[City].Others} MEMBER [Measure].[Rank] AS Rank([Geography].[City].CurrentMembers,[ALL]) Select { [Measures].[Reseller Sales Amount] ON 0, [Measure].[Rank] ON 1 } From [AdventureWorks]
upvoted 10 times
...
...
radissoufan
5 years, 1 month ago
What about the last box>> is correct?
upvoted 1 times
...
bilel_kaaniche
5 years, 1 month ago
we should use current member in rank function https://sqldusty.com/2014/08/18/the-mdx-rank-function/
upvoted 7 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...