I am trying to create a SSRS Report to find the Cube/Dimension Status (when was Cube/Dimension last processed and is Failed/Success), for example I have below DMV query for the same.
SELECT CUBE_NAME, LAST_DATA_UPDATE FROM $System.MDSCHEMA_CUBES
When i execute the above query in MDX query window it comes up with results, when i try to create a data using the above query in report server its coming up with error.
Error : Please verify that the query is an MDX one and not DMX. (Microsoft.AnalysisServices.Controls)
Can we use DMV querys for createing SSRS report and what should be the datasource.
Thank You.
Praveen