Wednesday, February 18, 2015

SSAS: How to find User-Defined Member Properties of a dimension?

User-Defined Member Properties are attribute relationships added to specific named level in a dimension. Once defined, they can be access using either PROPERTIES key word or Properties function. Here is and example of accessing a user-defined properties.

  1. -- from MSDN  
  2. SELECT   
  3.    CROSSJOIN([Ship Date].[Calendar].[Calendar Year].Members,   
  4.              [Measures].[Sales Amount]) ON COLUMNS,  
  5.    NON EMPTY Product.Product.MEMBERS  
  6.    DIMENSION PROPERTIES   
  7.               Product.Product.[List Price],  
  8.               Product.Product.[Dealer Price]  ON ROWS  
  9. FROM [Adventure Works]  
  10. WHERE ([Date].[Month of Year].[January])   


However, if you do not know all user-defined properties added and need to get a list, you can simply use Analysis Services Schema Rowsets for querying out information such as objects, state, sessions, connections, etc. There are many schema rowset under OLEDB for OLAP Schema Rowsets and the one we have to use is MDSCHEMA_PROPERTIES. Here is the query for getting all user-defined properties of a level in a dimension.

  1. SELECT *  
  2. FROM $SYSTEM.MDSCHEMA_PROPERTIES  
  3. WHERE [DIMENSION_UNIQUE_NAME] = '[Dim Customer]'  
  4.  AND [HIERARCHY_UNIQUE_NAME] = '[Dim Customer].[Customer]'  
  5.  AND [LEVEL_UNIQUE_NAME] = '[Dim Customer].[Customer].[Customer]'  
  6.  AND [PROPERTY_TYPE] = 1;  

Read more on Analysis Services Schema Rowsets: https://msdn.microsoft.com/en-us/library/ms126233.aspx
Read more on OLE DB for OLAP Schema Rowsets: https://msdn.microsoft.com/en-us/library/ms126079.aspx

No comments: