This page covers the SQL Server Analysis Services, also called as SSAS topics along with the MDX queries. It includes creating cube, accessing cube data, wriiting queries against the OLAP cube.
- Create a New Project
- How to Create Data Source
- Create Data Source View
- Add or Remove Tables from Data Source View
- Difference between Star Schema and Snow Flake Schema
- Create Dimensions
- Creating OLAP Cube
- How to Create Cube Dimensions
- Difference between Cube Dimension and Database Dimension
- How to Create Named Calculations
- Creating Measure Groups
TIP: We can use the SSIS ETL tool to transform the data and load into the OLAP cube. Next, use the SSRS reporting tool to design reports from cube dimensions and measure groups.
Multidimensional Expressions (MDX)
This MDX or multidimensional expressions page shows the list of available functions to work with the cube. For the query demonstration, we use the Adventure Works cube.
MDX Functions
- Ascendants
- AVG
- BottomCount
- BottomPercent
- BottomSum
- Children
- ClosingPeriod
- Cousin
- FirstChild
- FirstSibling
- Head
- LastChild
- LastSibling
- LastPeriods
- Lag
- Lead
- NextMember
- Non Empty
- NonEmpty Function
- OpeningPeriod
- ParallelPeriod
- Parent
- PeriodsToDate
- PrevMember
- Siblings
- Tail
- TopCount
- TopPercent
- TopSum
TIP: If you are working with Power BI tool, instead of MDX, you need DAX functions. So, Please refer to the Power BI tutorial to understand the DAX methods.
Comments are closed.