We are struggling to find the usage of measures and dimensions in SSAS cube.
Objective: To have a statistical dashboard to find the unused or most used measures and dimensions.
I have got help from https://blogs.perficient.com/microsoft/2011/06/ssas-usage-statistic-dashboards/ to enable the OLAPQueryLog table.
OLAPQueryLog table provides the following information
- MSOLAP_Database
- MSOLAP_ObjectPath
- MSOLAP_User
- Dataset
- StartTime
- Duration
We are using Dataset field to only find the usage of our columns but not measure.
I have also tried getting the users current sessions using DMX query.
Select * from $System.discover_sessions
but this is returning me the currently active sessions.
How can i get the historic sessions?
Does any one has solution for it?
Thanks,