Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
hello
We have multiple reports, published in different workspaces that are not Fabric enabled. We need to get data from all of these reports and other datasources (e.g. SharePoint, Excel) and load them in Fabric (e.g. in a Lakehouse). The underlying data in the reports get updated frequently but their schema stay the same.
How can this be achieved? I tried to connect to the semantic models in dataflow gen2, datapipelien, lakehouse with no luck.
I even enabled fabric on one of this workspaces and enabled "ObeLake integration" for the semantic model but still I can't connect to it through lakehouse/DFGen2.
Any help would be appreciated!
Solved! Go to Solution.
Power BI semantic models are analytical artifacts, not raw data stores. They don’t expose their data in a tabular/raw form via standard connectors like Lakehouse or Dataflows Gen2.
Enabling Fabric and OneLake Integration does let the model write to OneLake if explicitly configured, but semantic models cannot be queried like data tables from within Fabric-native components such as Lakehouses or Pipelines.
Dataflow Gen2 does not natively support connecting to semantic models (even in the same workspace).
There is no built-in connector from Fabric Lakehouse to Power BI semantic models, despite OneLake integration.
Your transition to Fabric is the right time to rebuild your semantic models.
Please mark this post as solution if it helps you. Appreciate Kudos.
Hi
Based on your forum post image, I'll provide a solution for bringing data from multiple non-Fabric-enabled reports into a Fabric Lakehouse.
When bringing semantic models from different workspaces into Fabric Lakehouse, you need a systematic approach since direct connections to semantic models aren't well-supported across workspace boundaries. Here's a comprehensive solution:
df = spark.read.format("delta").load("abfss://[workspace-id]@onelake.dfs.fabric.microsoft.com/[dataset-id]")
Since you mentioned having trouble with DataFlow Gen2, here's how to make it work:
# Install required packages sc.install_pypi_package("pyodbc") import pyodbcconn = pyodbc.connect('Driver={ODBC Driver 17 for SQL Server};' 'Server=powerbi://api.powerbi.com/v1.0/[tenant]/[workspace];' 'Database=[dataset];' 'Trusted_Connection=yes;') # Execute query and load to lakehouse query = "SELECT * FROM [TableName]" df = spark.read.format("jdbc").options( url="jdbc:sqlserver://[xmla-endpoint]", dbtable=f"({query}) as tmp", user="[username]", password="[password]" ).load() # Save to lakehouse df.write.format("delta").mode("overwrite").save("/lakehouse/default/[tablename]")
The XMLA endpoint approach is likely your best option if you're experiencing connectivity issues with the other methods. It provides a direct SQL-like connection to your semantic models regardless of workspace boundaries.
Power BI semantic models are analytical artifacts, not raw data stores. They don’t expose their data in a tabular/raw form via standard connectors like Lakehouse or Dataflows Gen2.
Enabling Fabric and OneLake Integration does let the model write to OneLake if explicitly configured, but semantic models cannot be queried like data tables from within Fabric-native components such as Lakehouses or Pipelines.
Dataflow Gen2 does not natively support connecting to semantic models (even in the same workspace).
There is no built-in connector from Fabric Lakehouse to Power BI semantic models, despite OneLake integration.
Your transition to Fabric is the right time to rebuild your semantic models.
Please mark this post as solution if it helps you. Appreciate Kudos.
Hi @imsarah ,
We haven’t heard back from you regarding our previous response and wanted to check if your issue has been resolved.
If it has, please consider clicking “Accept Answer” and “Yes” if you found the response helpful.
If you still have any questions or need further assistance, feel free to let us know — we're happy to help!
Thank you!
Hi @imsarah ,
If our response addressed by the community member for your query, please mark it as Accept Answer and click Yes if you found it helpful.
Should you have any further questions, feel free to reach out.
Thank you for being a part of the Microsoft Fabric Community Forum!
Hi @imsarah ,
We haven’t heard back from you regarding our previous response and wanted to check if your issue has been resolved.
If it has, please consider clicking “Accept Answer” and “Yes” if you found the response helpful.
If you still have any questions or need further assistance, feel free to let us know — we're happy to help!
Thank you!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Fabric update to learn about new features.
User | Count |
---|---|
36 | |
18 | |
7 | |
6 | |
3 |
User | Count |
---|---|
48 | |
44 | |
14 | |
8 | |
6 |