Forum Discussion
Retrieve Measures Using REST API
- 6 years ago
Hi Brilliant
if you'd like retrieve all measures from one pbix file, you might try below methods:
You can run a DMV query against the Tabular cube.
Essentially you need to connect to your Power BI Desktop instance from a tool such AS Sql Server Management Studio (or MDX Studio) and issue the following Query
SELECT [CATALOG_NAME] as [DATABASE],
CUBE_NAME AS [CUBE],[MEASUREGROUP_NAME] AS [FOLDER],[MEASURE_CAPTION] AS [MEASURE],
[MEASURE_IS_VISIBLE]
FROM $SYSTEM.MDSCHEMA_MEASURES
This will output information on your measures
Thanks for your kind reply
Is there any method for getting metadata without using Push Datasets?
So that I can get measures from the Datasets which are not created using Push Datasets...
I hope you have a solid solution for that.
Thanks
Hi Brilliant
if you'd like retrieve all measures from one pbix file, you might try below methods:
You can run a DMV query against the Tabular cube.
Essentially you need to connect to your Power BI Desktop instance from a tool such AS Sql Server Management Studio (or MDX Studio) and issue the following Query
SELECT [CATALOG_NAME] as [DATABASE],
CUBE_NAME AS [CUBE],[MEASUREGROUP_NAME] AS [FOLDER],[MEASURE_CAPTION] AS [MEASURE],
[MEASURE_IS_VISIBLE]
FROM $SYSTEM.MDSCHEMA_MEASURES
This will output information on your measures