Forum Discussion
HilaDG
3 years agoNew Member
Cannot get DESCRIPTION from MDSCHEMA_MEASURES
I have a Power BI model which I'm trying to read the Metadata of. Running the following query in DAX Studio works really well: SELECT * FROM $SYSTEM.MDSCHEMA_MEASURES If I try to change it to li...
AntrikshSharma
3 years agoCommunity Champion
HilaDG Darren responded:
I believe the DESCRIPTION is a keyword in the Microsoft DMX language (which is what the DMV queries use)
If you enclose it in square brackets it should work SELECT [DESCRIPTION] FROM $SYSTEM.MDSCHEMA_MEASURES