Forum Discussion
Anonymous
5 years agoNot applicable
data load best practice for relational source but complex transformations
All of my data sources are SQL Server, making them a candidate for query folding. However, my transformations are complex, which prevents query folding. I have found that writing the transformation...
- 5 years ago
I would say yes and you also want to be building views in SQL then just pulling the view into PowerBI. Take a look at this article on the topic.
https://www.sqlbi.com/articles/data-import-best-practices-in-power-bi/
mhossain
Solution Sage
5 years agoAnonymous
I think it is better to write all the complex transformation and transformations which are not query folded in your sql, performance will be better. However If all the steps in M query are folded then more or less it will be the same as native query.
If you are good at sql query then you will write better optimized query which gives you better performance. Hope this makes sense.