Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
olegkazanskyi
Helper II
Helper II

XMLA dataset tables created with dataflow do not have M code

We want to pull M code from Power BI Service to get information that we can't with using API, like a specific stored procedure used in a table, all appends and merges etc.

 

This code shows all dataset M Queries

select * from
$system.discover_m_expressions

 

But when I run it for a dataset built completely from dataflows, it doesn't show anything!

Is it a bug?

1 ACCEPTED SOLUTION
bcdobbs
Super User
Super User

Hi,

That returns any shared expressions in M which I thought were things like parameters and functions.

 

In tabular for modern data sources like data flows the M expressions are stored in the table partition which can be accessed with:

 

SELECT *
FROM $SYSTEM.TMSCHEMA_PARTITIONS

 



Ben Dobbs

LinkedIn | Twitter | Blog

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!

View solution in original post

5 REPLIES 5
bcdobbs
Super User
Super User

Hi,

That returns any shared expressions in M which I thought were things like parameters and functions.

 

In tabular for modern data sources like data flows the M expressions are stored in the table partition which can be accessed with:

 

SELECT *
FROM $SYSTEM.TMSCHEMA_PARTITIONS

 



Ben Dobbs

LinkedIn | Twitter | Blog

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!

It works!

Thank you!

No problem, I've learnt something new there so thank you!

 

Following code gives you list of all those queries:
SELECT * FROM $System.DBSchema_Tables
WHERE TABLE_TYPE = 'SCHEMA'
ORDER BY TABLE_NAME ASC

 

which is from Dynamic Management Views (DMVs) in Analysis Services | Microsoft Docs



Ben Dobbs

LinkedIn | Twitter | Blog

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!

You literally changed my life today! 

I wondered where all these requests come from, now I know!

I will dig deeper!

 

Big kudos!

If you open your XLMA end point in tabular editor you can see the struture:

 

bcdobbs_0-1638901034658.png

and then the data source M is in the tables Partition:

bcdobbs_1-1638901099938.png

 



Ben Dobbs

LinkedIn | Twitter | Blog

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors