SlideShare a Scribd company logo
1 of 30
MDX- Basics  Bragadishwaran U
MDX* – Basics ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],* MDX – primarily Microsoft SSAS  cubes . (Also applicable to Hyperion  Essbase to  a large extent )
Understanding Dimensionality of Data representation ,[object Object],Account Year Investment 1 2010 100 2 2009 80 Account Investment 1 100 2 80 Account Year Product Investment 1 2010 A 100 2 2009 B 80
Understanding Dimensionality of Data representation ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Columns (first dimension )  Rows (second dimension) “ So, what does exactly the word table mean?” “Ah, that’s just acronym for two-dimensional cube!” (From conversation of two DBAs in 2000) Account Year Investment 1 2010 100 2 2009 80
MDX Dimensionality  MDX queries arrange Cube Dimensions on the Representation Dimensions ( hereafter referred as ‘Axis’ to avoid confusion ) e.g. retrieve Planned GSV measure for accounts E4098,E4398. select     {   [Measures].[Planned GSV] }  on  0, { [Account].[Account Code].[E4098:47] ,[Account].[Account Code].[E4398:47]   }  on  1 from  [Cube REPORTING]
MDX Query – Axis Framework MDX queries arrange Cube Dimensions on the Representation Dimensions ( hereafter referred as ‘Axis’ to avoid confusion ) e.g. retrieve Planned GSV measure for accounts E4098,E4398. select     {   [Measures].[Planned GSV] }  on   columns , { [Account].[Account Code].[E4098:47] ,[Account].[Account Code].[E4398:47]   }  on   rows from  [Cube REPORTING] MDX provides names for each axis (till 4)
MDX query – Axis Framework MDX queries primarily  define Axis's  select     { something }  on   Axis (0), { Something else   }  on   Axis (1), from  [cube name] e.g.  select   { [Account].[Account Code].[E4098:47] ,[Account].[Account Code].[E4398:47] } on   Axis (0), { [Measures].[Planned GSV]  }  on   Axis (1) from  [Cube REPORTING]
MDX query – Axis Framework MDX queries primarily  define Axis's  select     { something }  on   Axis (0), { Something else   }  on   Axis (1), from  [cube name] Something  ? Something = set or tuple Also note the structure of the basic MDX query
MDX query – tuple and SETS Tuples A  tuple  is a combination of members from one or more dimensions ->  not more than 1 member from a dimension  ( same rule as co-ordinate geometry ) * -> Many ways are there to specify a member. e.g. ( [Measures].[Planned GSV] ,[Time].[2010 HalfYear 1]  ) ( [Measures].[Planned GSV] ,[Time].&[64]) SETS A Set is an ordered collection of Tuples. select   { [Account].[Account Code].[E4098:47] ,[Account].[Account Code].[E4398:47] } on   Axis (0), { ( [Measures].[Planned GSV] ,time.[2010 JAN]) ,( [Measures].[Planned GSV] ,[Time].[2010 HalfYear 1]  ) }  on Axis(0) () – for tuples {} – for sets * Actually its one member from each hierarchy in a dimension but lets not worry about this exception now .
Understanding  tuple Best analogy - coordinate geometry * 2D –space  Tuple of the form  (x 1 ,y 1  ) e.g. ( 3,4) Tuple like  (x 1 ,y 1  , y 2 ) or  (x 1 ,x 2  , y 2 ) are invalid  Now apply same concept to n- dimensional cube What are valid tuples ? (time.year.[2011] , Product.brand.[B1]) (time.year.[2011] , Product.brand.[B1] , time.year.[2010]) (time.year.[2011] , Product.brand.[B1], Geo.[India]) (time.year.[2011] , Product.brand.[B1], Product.brand.[B2]) * This analogy holds good except for hierarchies. Hierarchies in cube space can be considered as dimensions in Co-ordinate geometry Understanding tuples are key to thinking in MDX . We will stop here till all tuple  related queries are clarified.
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
MDX query – the children function .Children -- used to express the children of a member  e.g. as per Time hierarchy – month is the child of quarter select  { Time.[2010 Quarter 1]. children  } on  0, {[Account].[E4398:47]}  on  1 from  [Cube REPORTING]
MDX query – the Descendatns function Descendants ( member  [, [  level  ] [,  flag ]] ) -- used to express the Descendant  of a  member  at a  level  Flag allows display  Select  {[Account].[E4398:47]}  on  0, {  descendants (Time.[2010],month, self ) }  on  1 from  [Cube REPORTING] Select  {[Account].[E4398:47]}  on  0, {  descendants (Time.[2010],month, self_and_before ) }  on  1 from  [Cube REPORTING]
Assignment -1 Assume the following Dimensions :  Time  :  Year <- Quarter <- Month <- Day  Product :  Dollar Sales, Unit Sales  Geo : country <- state <- city
Cross joins Concept :  Two Sets - A ,B A = {1,2,3} B = {x,y} Cross join AxB AxB = { (1,x), (2,x), (3,x), (1,y), (2,y), (3,y),} Planned GSV for 2 accounts for 3 months --  select   { (account.[Account Code].[E4098:47]), (account.[Account Code].[E4400:47]) } *  -- cross join  { time.[2010 JAN] : time.[2010 MAR]  } on  0, { [Measures].[Planned GSV] } on  1 from   [Cube REPORTING]
Filter  Concept :  Filter  ( Set , Expression ) Accounts which have more than GSV select   filter   ( (account.[Account Code]. members ), [Measures].[Planned GSV] > 10000000 ) on  0, { [Measures].[Planned GSV]  } on  1 from   [Cube REPORTING] .members  gives all members of that level
Filter  What is the meaning of this ? select   filter   ( (account.[Account Code]. members ), ([Measures].[Planned GSV] ) > 10000000 )*  -- cross join  { time.[2010 JAN] : time.[2010 MAR]  } on  0, { [Measures].[Planned GSV]  } on  1 from   [Cube REPORTING]
Filter  And this ? select   filter   ( (account.[Account Code]. members ), ([Measures].[Planned GSV] , time.[2010 JAN] ) > 10000000 )*  -- cross join  { time.[2010 JAN] : time.[2010 MAR]  } on  0, { [Measures].[Planned GSV]  } on  1 from   [Cube REPORTING] Tuple reference is one of the powerful concepts in MDX
order  Concept :  Order (set1, expression  [, ASC | DESC | BASC | BDESC]) Accounts ordered by GSV select   non   empty  ( order   ( (account.[Account Code]. members ), ([Measures].[Planned GSV] )  ) ) on  0, { [Measures].[Planned GSV]  } on  1 from   [Cube REPORTING]
Accounts ordered by ??? select   non   empty  ( order   ( (account.[Account Code]. members ), ([Measures].[Planned GSV],time.[2011 JAN] )  ) ) on  0, { [Measures].[Planned GSV]  } on  1 from   [Cube REPORTING]
The Where Clause select   from   [Cube REPORTING] where   ([Measures].[Planned GSV] ) select   from   [Cube REPORTING] where   ([Measures].[Planned GSV],time.[2010 JAN] ) select   from   [Cube REPORTING] where   ([Measures].[Planned GSV],time.[2010 JAN] ,account.[Account Code].[E4400:47] ) Note : Where clause are a good way to identify invalid tuples Tuple instead of expression used
Named Sets  : Ease of reference  with   set  [great accounts]  as   { [Account].[Account Code].[E1373:47], [Account].[Account Code].[E40301:47] }  select { [Measures].[Planned GSV] } on  0, non   empty { [great accounts] }  on  1 from  [Cube REPORTING] Also possible to create persistent named Sets  create   set  [Cube REPORTING].[test accounts]  as   { [Account].[Account Code].[E1373:47], [Account].[Account Code].[E40301:47] }
Calculated members :  the power of MDX !!!! 1. Simple Calculated members  Find the  Average sales  price  ( i.e. Total Dollar sales /  number of units sold )  for the quarters  2005 Q1 and Q2. WITH MEMBER  [Measures].[Avg Sales Price]  AS [Measures].[Dollar Sales] / [Measures].[Unit Sales] SELECT { [Measures].[Dollar Sales] [Measures].[Unit Sales] , [Measures].[Avg Sales Price] } on   columns , { [Time].[Q1, 2005] , [Time].[Q2, 2005] } on   rows FROM  Sales Simple Division used to calculate a new measure    Dollar Sales  Unit Sales  Average Sales price Q1, 2005 100 5 20 Q2, 2005 120 8 15
Calculated members :  the power of MDX !!!! 2. Calculated members  of medium complexity Find the  Quarter on quarter growth for Dollar sales and unit sales for the quarters  2005  Q2. Growth in dollar sales = 2005 Q2 Dollar sales - 2005 Q1 Dollar sales  Growth in unit sales = 2005 Q2 unit sales - 2005 Q1 unit sales  WITH MEMBER  [Time].[Q1 to Q2 Growth]  AS [Time].[Q2, 2005] - [Time].[Q1, 2005] SELECT { [Measures].[Dollar Sales] , [Measures].[Unit Sales] } on   columns , { [Time].[Q1, 2005] , [Time].[Q2, 2005] , [Time].[Q1 to Q2 Growth] } on   rows FROM  Sales WHERE  ([Customer].[MA]) How does this take care of both subtractions ?
Calculated members :  the power of MDX !!!! Precedence resolutions  Combining  previous two problems , write MDX to calculate Q1 to Q2 growth in average Sales prices WITH MEMBER  [Measures].[Avg Sales Price]  AS [Measures].[Dollar Sales] / [Measures].[Unit Sales] MEMBER  [Time].[Q1 to Q2 Growth]  AS [Time].[Q2, 2005] - [Time].[Q1, 2005] SELECT { [Measures].[Dollar Sales], [Measures].[Unit Sales], [Measures].[Avg Sales Price] } on   columns , { [Time].[Q1, 2005], [Time].[Q2, 2005], [Time].[Q1 to Q2 Growth] } on   rows FROM  [Sales]
Calculated members :  the power of MDX !!!! Precedence resolutions  Combining  previous two problems , write MDX to calculate Q1 to Q2 growth in average Sales prices WITH MEMBER  [Measures].[Avg Sales Price]  AS [Measures].[Dollar Sales] / [Measures].[Unit Sales], SOLVE_ORDER  = 0 MEMBER  [Time].[Q1 to Q2 Growth]  AS [Time].[Q2, 2005] - [Time].[Q1, 2005], SOLVE_ORDER  = 1 SELECT { [Measures].[Dollar Sales], [Measures].[Unit Sales], [Measures].[Avg Sales Price] } on   columns , { [Time].[Q1, 2005], [Time].[Q2, 2005], [Time].[Q1 to Q2 Growth] } on   rows FROM  [Sales]
Calculated members :  the power of MDX !!!! Write an MDX to get the following result Measures -> Measures.[Sales Amount], Measures.[Total Cost] Dimensions -> Phase.Actual , Phase.Planned Use normal formulas for profit , percentage margin , amount of variance, percentage of variance.
References : Most of the concepts covered in this PPT have been Distilled from the below books
© 2008 MindTree Limited Imagination   Action   Joy

More Related Content

Viewers also liked

Annual Environmental Events
Annual Environmental EventsAnnual Environmental Events
Annual Environmental EventsWindTurbines.net
 
Simulations analysis with comparative study of a pmsg performances for small ...
Simulations analysis with comparative study of a pmsg performances for small ...Simulations analysis with comparative study of a pmsg performances for small ...
Simulations analysis with comparative study of a pmsg performances for small ...Mellah Hacene
 
Basics Of Wind Power
Basics Of Wind PowerBasics Of Wind Power
Basics Of Wind Powerckmapawatt
 
Flow Physics analysis of Three-bucket Helical Savonius rotor at 90 degree twi...
Flow Physics analysis of Three-bucket Helical Savonius rotor at 90 degree twi...Flow Physics analysis of Three-bucket Helical Savonius rotor at 90 degree twi...
Flow Physics analysis of Three-bucket Helical Savonius rotor at 90 degree twi...BBIT Kolkata
 
MTA-BuildingPlace Sm Wind Turbine Regs
MTA-BuildingPlace Sm Wind Turbine RegsMTA-BuildingPlace Sm Wind Turbine Regs
MTA-BuildingPlace Sm Wind Turbine Regsbuildingplace
 
Catch The Wind Investor Presentation November 2009
Catch The Wind Investor Presentation November 2009Catch The Wind Investor Presentation November 2009
Catch The Wind Investor Presentation November 2009TMX Equicom
 
Wind energy I. Lesson 8. Power losses at rotor blade
Wind energy I. Lesson 8. Power losses at rotor bladeWind energy I. Lesson 8. Power losses at rotor blade
Wind energy I. Lesson 8. Power losses at rotor bladeTuong Do
 
Wind energy
Wind energyWind energy
Wind energyVirenhk
 
Wind energy and constructional features
Wind energy and constructional featuresWind energy and constructional features
Wind energy and constructional featuresShanid Pazhamkavil
 
Wind energy I. Lesson 7. Wind blade interaction
Wind energy I. Lesson 7. Wind blade interactionWind energy I. Lesson 7. Wind blade interaction
Wind energy I. Lesson 7. Wind blade interactionTuong Do
 
Theoretical and Design Analysis of SAVONIUS TURBINE
Theoretical and Design Analysis of SAVONIUS TURBINETheoretical and Design Analysis of SAVONIUS TURBINE
Theoretical and Design Analysis of SAVONIUS TURBINERajeev Ranjan
 
Study About Wind turbines
Study About Wind turbinesStudy About Wind turbines
Study About Wind turbinesElia Tohmé
 
Wind Turbine Report Final
Wind Turbine Report FinalWind Turbine Report Final
Wind Turbine Report FinalJames Goddings
 

Viewers also liked (20)

Annual Environmental Events
Annual Environmental EventsAnnual Environmental Events
Annual Environmental Events
 
Simulations analysis with comparative study of a pmsg performances for small ...
Simulations analysis with comparative study of a pmsg performances for small ...Simulations analysis with comparative study of a pmsg performances for small ...
Simulations analysis with comparative study of a pmsg performances for small ...
 
Wind
WindWind
Wind
 
Wind
WindWind
Wind
 
Reinventing Wind Turbines
Reinventing Wind TurbinesReinventing Wind Turbines
Reinventing Wind Turbines
 
Basics Of Wind Power
Basics Of Wind PowerBasics Of Wind Power
Basics Of Wind Power
 
guaglobal.com
guaglobal.comguaglobal.com
guaglobal.com
 
Flow Physics analysis of Three-bucket Helical Savonius rotor at 90 degree twi...
Flow Physics analysis of Three-bucket Helical Savonius rotor at 90 degree twi...Flow Physics analysis of Three-bucket Helical Savonius rotor at 90 degree twi...
Flow Physics analysis of Three-bucket Helical Savonius rotor at 90 degree twi...
 
MTA-BuildingPlace Sm Wind Turbine Regs
MTA-BuildingPlace Sm Wind Turbine RegsMTA-BuildingPlace Sm Wind Turbine Regs
MTA-BuildingPlace Sm Wind Turbine Regs
 
Catch The Wind Investor Presentation November 2009
Catch The Wind Investor Presentation November 2009Catch The Wind Investor Presentation November 2009
Catch The Wind Investor Presentation November 2009
 
Wind energy I. Lesson 8. Power losses at rotor blade
Wind energy I. Lesson 8. Power losses at rotor bladeWind energy I. Lesson 8. Power losses at rotor blade
Wind energy I. Lesson 8. Power losses at rotor blade
 
Wind energy
Wind energyWind energy
Wind energy
 
Wind energy and constructional features
Wind energy and constructional featuresWind energy and constructional features
Wind energy and constructional features
 
Power Electronics
Power ElectronicsPower Electronics
Power Electronics
 
WIND ENERGY
WIND ENERGYWIND ENERGY
WIND ENERGY
 
Wind For Students
Wind For StudentsWind For Students
Wind For Students
 
Wind energy I. Lesson 7. Wind blade interaction
Wind energy I. Lesson 7. Wind blade interactionWind energy I. Lesson 7. Wind blade interaction
Wind energy I. Lesson 7. Wind blade interaction
 
Theoretical and Design Analysis of SAVONIUS TURBINE
Theoretical and Design Analysis of SAVONIUS TURBINETheoretical and Design Analysis of SAVONIUS TURBINE
Theoretical and Design Analysis of SAVONIUS TURBINE
 
Study About Wind turbines
Study About Wind turbinesStudy About Wind turbines
Study About Wind turbines
 
Wind Turbine Report Final
Wind Turbine Report FinalWind Turbine Report Final
Wind Turbine Report Final
 

Similar to Mdx basics

Getting Started with MDX 20140625a
Getting Started with MDX 20140625aGetting Started with MDX 20140625a
Getting Started with MDX 20140625aRon Moore
 
MDX (Multi Dimensional Expressions) Introduction
MDX (Multi Dimensional Expressions) IntroductionMDX (Multi Dimensional Expressions) Introduction
MDX (Multi Dimensional Expressions) IntroductionDigvendra Singh
 
Calculation Groups - color 1 slide per page.pdf
Calculation Groups - color 1 slide per page.pdfCalculation Groups - color 1 slide per page.pdf
Calculation Groups - color 1 slide per page.pdfPBIMINERADC
 
SSAS Project Profile
SSAS Project ProfileSSAS Project Profile
SSAS Project Profiletthompson0421
 
Chris Seebacher Portfolio
Chris Seebacher PortfolioChris Seebacher Portfolio
Chris Seebacher Portfolioguest3ea163
 
Business Intelligence Portfolio
Business Intelligence PortfolioBusiness Intelligence Portfolio
Business Intelligence PortfolioChris Seebacher
 
With big data comes big responsibility
With big data comes big responsibilityWith big data comes big responsibility
With big data comes big responsibilityERPScan
 
Dax queries.pdf
Dax queries.pdfDax queries.pdf
Dax queries.pdfntrnbk
 
Business Intelligence Portfolio
Business Intelligence PortfolioBusiness Intelligence Portfolio
Business Intelligence Portfolioeileensauer
 
Business Intelligence Portfolio
Business Intelligence PortfolioBusiness Intelligence Portfolio
Business Intelligence Portfolioeileensauer
 
Cubing and Metrics in SQL, oh my!
Cubing and Metrics in SQL, oh my!Cubing and Metrics in SQL, oh my!
Cubing and Metrics in SQL, oh my!Julian Hyde
 
Mdx 2nddraft
Mdx 2nddraftMdx 2nddraft
Mdx 2nddraftedarsoft
 
Agnes's SSAS Project Documentation
Agnes's SSAS Project DocumentationAgnes's SSAS Project Documentation
Agnes's SSAS Project Documentationagnestetter
 
Chapter 16-spreadsheet1 questions and answer
Chapter 16-spreadsheet1  questions and answerChapter 16-spreadsheet1  questions and answer
Chapter 16-spreadsheet1 questions and answerRaajTech
 
Nitin\'s Business Intelligence Portfolio
Nitin\'s Business Intelligence PortfolioNitin\'s Business Intelligence Portfolio
Nitin\'s Business Intelligence Portfolionpatel2362
 
The Development of Financial Information System and Business Intelligence Usi...
The Development of Financial Information System and Business Intelligence Usi...The Development of Financial Information System and Business Intelligence Usi...
The Development of Financial Information System and Business Intelligence Usi...IJERA Editor
 
William Schaffrans Bus Intelligence Portfolio
William Schaffrans Bus Intelligence PortfolioWilliam Schaffrans Bus Intelligence Portfolio
William Schaffrans Bus Intelligence Portfoliowschaffr
 
8. Vectors data frames
8. Vectors data frames8. Vectors data frames
8. Vectors data framesExternalEvents
 

Similar to Mdx basics (20)

Getting Started with MDX 20140625a
Getting Started with MDX 20140625aGetting Started with MDX 20140625a
Getting Started with MDX 20140625a
 
MDX (Multi Dimensional Expressions) Introduction
MDX (Multi Dimensional Expressions) IntroductionMDX (Multi Dimensional Expressions) Introduction
MDX (Multi Dimensional Expressions) Introduction
 
Calculation Groups - color 1 slide per page.pdf
Calculation Groups - color 1 slide per page.pdfCalculation Groups - color 1 slide per page.pdf
Calculation Groups - color 1 slide per page.pdf
 
SSAS Project Profile
SSAS Project ProfileSSAS Project Profile
SSAS Project Profile
 
Chris Seebacher Portfolio
Chris Seebacher PortfolioChris Seebacher Portfolio
Chris Seebacher Portfolio
 
Business Intelligence Portfolio
Business Intelligence PortfolioBusiness Intelligence Portfolio
Business Intelligence Portfolio
 
With big data comes big responsibility
With big data comes big responsibilityWith big data comes big responsibility
With big data comes big responsibility
 
Dax queries.pdf
Dax queries.pdfDax queries.pdf
Dax queries.pdf
 
Business Intelligence Portfolio
Business Intelligence PortfolioBusiness Intelligence Portfolio
Business Intelligence Portfolio
 
Business Intelligence Portfolio
Business Intelligence PortfolioBusiness Intelligence Portfolio
Business Intelligence Portfolio
 
Cubing and Metrics in SQL, oh my!
Cubing and Metrics in SQL, oh my!Cubing and Metrics in SQL, oh my!
Cubing and Metrics in SQL, oh my!
 
Mdx 2nddraft
Mdx 2nddraftMdx 2nddraft
Mdx 2nddraft
 
Agnes's SSAS Project Documentation
Agnes's SSAS Project DocumentationAgnes's SSAS Project Documentation
Agnes's SSAS Project Documentation
 
Programming in R
Programming in RProgramming in R
Programming in R
 
Chapter 16-spreadsheet1 questions and answer
Chapter 16-spreadsheet1  questions and answerChapter 16-spreadsheet1  questions and answer
Chapter 16-spreadsheet1 questions and answer
 
Nitin\'s Business Intelligence Portfolio
Nitin\'s Business Intelligence PortfolioNitin\'s Business Intelligence Portfolio
Nitin\'s Business Intelligence Portfolio
 
The Development of Financial Information System and Business Intelligence Usi...
The Development of Financial Information System and Business Intelligence Usi...The Development of Financial Information System and Business Intelligence Usi...
The Development of Financial Information System and Business Intelligence Usi...
 
William Schaffrans Bus Intelligence Portfolio
William Schaffrans Bus Intelligence PortfolioWilliam Schaffrans Bus Intelligence Portfolio
William Schaffrans Bus Intelligence Portfolio
 
8. Vectors data frames
8. Vectors data frames8. Vectors data frames
8. Vectors data frames
 
Ssas mdx language
Ssas mdx languageSsas mdx language
Ssas mdx language
 

Recently uploaded

Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxnull - The Open Security Community
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfjimielynbastida
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Neo4j
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsSnow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsHyundai Motor Group
 

Recently uploaded (20)

Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdf
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsSnow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
 

Mdx basics

  • 1. MDX- Basics Bragadishwaran U
  • 2.
  • 3.
  • 4.
  • 5. MDX Dimensionality MDX queries arrange Cube Dimensions on the Representation Dimensions ( hereafter referred as ‘Axis’ to avoid confusion ) e.g. retrieve Planned GSV measure for accounts E4098,E4398. select { [Measures].[Planned GSV] } on 0, { [Account].[Account Code].[E4098:47] ,[Account].[Account Code].[E4398:47] } on 1 from [Cube REPORTING]
  • 6. MDX Query – Axis Framework MDX queries arrange Cube Dimensions on the Representation Dimensions ( hereafter referred as ‘Axis’ to avoid confusion ) e.g. retrieve Planned GSV measure for accounts E4098,E4398. select { [Measures].[Planned GSV] } on columns , { [Account].[Account Code].[E4098:47] ,[Account].[Account Code].[E4398:47] } on rows from [Cube REPORTING] MDX provides names for each axis (till 4)
  • 7. MDX query – Axis Framework MDX queries primarily define Axis's select { something } on Axis (0), { Something else } on Axis (1), from [cube name] e.g. select { [Account].[Account Code].[E4098:47] ,[Account].[Account Code].[E4398:47] } on Axis (0), { [Measures].[Planned GSV] } on Axis (1) from [Cube REPORTING]
  • 8. MDX query – Axis Framework MDX queries primarily define Axis's select { something } on Axis (0), { Something else } on Axis (1), from [cube name] Something ? Something = set or tuple Also note the structure of the basic MDX query
  • 9. MDX query – tuple and SETS Tuples A tuple is a combination of members from one or more dimensions -> not more than 1 member from a dimension ( same rule as co-ordinate geometry ) * -> Many ways are there to specify a member. e.g. ( [Measures].[Planned GSV] ,[Time].[2010 HalfYear 1] ) ( [Measures].[Planned GSV] ,[Time].&[64]) SETS A Set is an ordered collection of Tuples. select { [Account].[Account Code].[E4098:47] ,[Account].[Account Code].[E4398:47] } on Axis (0), { ( [Measures].[Planned GSV] ,time.[2010 JAN]) ,( [Measures].[Planned GSV] ,[Time].[2010 HalfYear 1] ) } on Axis(0) () – for tuples {} – for sets * Actually its one member from each hierarchy in a dimension but lets not worry about this exception now .
  • 10. Understanding tuple Best analogy - coordinate geometry * 2D –space Tuple of the form (x 1 ,y 1 ) e.g. ( 3,4) Tuple like (x 1 ,y 1 , y 2 ) or (x 1 ,x 2 , y 2 ) are invalid Now apply same concept to n- dimensional cube What are valid tuples ? (time.year.[2011] , Product.brand.[B1]) (time.year.[2011] , Product.brand.[B1] , time.year.[2010]) (time.year.[2011] , Product.brand.[B1], Geo.[India]) (time.year.[2011] , Product.brand.[B1], Product.brand.[B2]) * This analogy holds good except for hierarchies. Hierarchies in cube space can be considered as dimensions in Co-ordinate geometry Understanding tuples are key to thinking in MDX . We will stop here till all tuple related queries are clarified.
  • 11.
  • 12.
  • 13. MDX query – the children function .Children -- used to express the children of a member e.g. as per Time hierarchy – month is the child of quarter select { Time.[2010 Quarter 1]. children } on 0, {[Account].[E4398:47]} on 1 from [Cube REPORTING]
  • 14. MDX query – the Descendatns function Descendants ( member [, [ level ] [, flag ]] ) -- used to express the Descendant of a member at a level Flag allows display Select {[Account].[E4398:47]} on 0, { descendants (Time.[2010],month, self ) } on 1 from [Cube REPORTING] Select {[Account].[E4398:47]} on 0, { descendants (Time.[2010],month, self_and_before ) } on 1 from [Cube REPORTING]
  • 15. Assignment -1 Assume the following Dimensions : Time : Year <- Quarter <- Month <- Day Product : Dollar Sales, Unit Sales Geo : country <- state <- city
  • 16. Cross joins Concept : Two Sets - A ,B A = {1,2,3} B = {x,y} Cross join AxB AxB = { (1,x), (2,x), (3,x), (1,y), (2,y), (3,y),} Planned GSV for 2 accounts for 3 months -- select { (account.[Account Code].[E4098:47]), (account.[Account Code].[E4400:47]) } * -- cross join { time.[2010 JAN] : time.[2010 MAR] } on 0, { [Measures].[Planned GSV] } on 1 from [Cube REPORTING]
  • 17. Filter Concept : Filter ( Set , Expression ) Accounts which have more than GSV select filter ( (account.[Account Code]. members ), [Measures].[Planned GSV] > 10000000 ) on 0, { [Measures].[Planned GSV] } on 1 from [Cube REPORTING] .members gives all members of that level
  • 18. Filter What is the meaning of this ? select filter ( (account.[Account Code]. members ), ([Measures].[Planned GSV] ) > 10000000 )* -- cross join { time.[2010 JAN] : time.[2010 MAR] } on 0, { [Measures].[Planned GSV] } on 1 from [Cube REPORTING]
  • 19. Filter And this ? select filter ( (account.[Account Code]. members ), ([Measures].[Planned GSV] , time.[2010 JAN] ) > 10000000 )* -- cross join { time.[2010 JAN] : time.[2010 MAR] } on 0, { [Measures].[Planned GSV] } on 1 from [Cube REPORTING] Tuple reference is one of the powerful concepts in MDX
  • 20. order Concept : Order (set1, expression [, ASC | DESC | BASC | BDESC]) Accounts ordered by GSV select non empty ( order ( (account.[Account Code]. members ), ([Measures].[Planned GSV] ) ) ) on 0, { [Measures].[Planned GSV] } on 1 from [Cube REPORTING]
  • 21. Accounts ordered by ??? select non empty ( order ( (account.[Account Code]. members ), ([Measures].[Planned GSV],time.[2011 JAN] ) ) ) on 0, { [Measures].[Planned GSV] } on 1 from [Cube REPORTING]
  • 22. The Where Clause select from [Cube REPORTING] where ([Measures].[Planned GSV] ) select from [Cube REPORTING] where ([Measures].[Planned GSV],time.[2010 JAN] ) select from [Cube REPORTING] where ([Measures].[Planned GSV],time.[2010 JAN] ,account.[Account Code].[E4400:47] ) Note : Where clause are a good way to identify invalid tuples Tuple instead of expression used
  • 23. Named Sets : Ease of reference with set [great accounts] as { [Account].[Account Code].[E1373:47], [Account].[Account Code].[E40301:47] } select { [Measures].[Planned GSV] } on 0, non empty { [great accounts] } on 1 from [Cube REPORTING] Also possible to create persistent named Sets create set [Cube REPORTING].[test accounts] as { [Account].[Account Code].[E1373:47], [Account].[Account Code].[E40301:47] }
  • 24. Calculated members : the power of MDX !!!! 1. Simple Calculated members Find the Average sales price ( i.e. Total Dollar sales / number of units sold ) for the quarters 2005 Q1 and Q2. WITH MEMBER [Measures].[Avg Sales Price] AS [Measures].[Dollar Sales] / [Measures].[Unit Sales] SELECT { [Measures].[Dollar Sales] [Measures].[Unit Sales] , [Measures].[Avg Sales Price] } on columns , { [Time].[Q1, 2005] , [Time].[Q2, 2005] } on rows FROM Sales Simple Division used to calculate a new measure   Dollar Sales Unit Sales Average Sales price Q1, 2005 100 5 20 Q2, 2005 120 8 15
  • 25. Calculated members : the power of MDX !!!! 2. Calculated members of medium complexity Find the Quarter on quarter growth for Dollar sales and unit sales for the quarters 2005 Q2. Growth in dollar sales = 2005 Q2 Dollar sales - 2005 Q1 Dollar sales Growth in unit sales = 2005 Q2 unit sales - 2005 Q1 unit sales WITH MEMBER [Time].[Q1 to Q2 Growth] AS [Time].[Q2, 2005] - [Time].[Q1, 2005] SELECT { [Measures].[Dollar Sales] , [Measures].[Unit Sales] } on columns , { [Time].[Q1, 2005] , [Time].[Q2, 2005] , [Time].[Q1 to Q2 Growth] } on rows FROM Sales WHERE ([Customer].[MA]) How does this take care of both subtractions ?
  • 26. Calculated members : the power of MDX !!!! Precedence resolutions Combining previous two problems , write MDX to calculate Q1 to Q2 growth in average Sales prices WITH MEMBER [Measures].[Avg Sales Price] AS [Measures].[Dollar Sales] / [Measures].[Unit Sales] MEMBER [Time].[Q1 to Q2 Growth] AS [Time].[Q2, 2005] - [Time].[Q1, 2005] SELECT { [Measures].[Dollar Sales], [Measures].[Unit Sales], [Measures].[Avg Sales Price] } on columns , { [Time].[Q1, 2005], [Time].[Q2, 2005], [Time].[Q1 to Q2 Growth] } on rows FROM [Sales]
  • 27. Calculated members : the power of MDX !!!! Precedence resolutions Combining previous two problems , write MDX to calculate Q1 to Q2 growth in average Sales prices WITH MEMBER [Measures].[Avg Sales Price] AS [Measures].[Dollar Sales] / [Measures].[Unit Sales], SOLVE_ORDER = 0 MEMBER [Time].[Q1 to Q2 Growth] AS [Time].[Q2, 2005] - [Time].[Q1, 2005], SOLVE_ORDER = 1 SELECT { [Measures].[Dollar Sales], [Measures].[Unit Sales], [Measures].[Avg Sales Price] } on columns , { [Time].[Q1, 2005], [Time].[Q2, 2005], [Time].[Q1 to Q2 Growth] } on rows FROM [Sales]
  • 28. Calculated members : the power of MDX !!!! Write an MDX to get the following result Measures -> Measures.[Sales Amount], Measures.[Total Cost] Dimensions -> Phase.Actual , Phase.Planned Use normal formulas for profit , percentage margin , amount of variance, percentage of variance.
  • 29. References : Most of the concepts covered in this PPT have been Distilled from the below books
  • 30. © 2008 MindTree Limited Imagination Action Joy