Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi Community,
I have a Power BI dataset published in the service that is enabled with Large Semantic Model Storage Format and Incremental Refresh.
When I try to download the PBIX from the Service, I get the error:
"This file can't be downloaded yet."
I understand this is by design for large models, but my challenge is that I need to edit the model because one of the tables stores data in JSON format, and I need to make updates.
Questions:
The goal is to make sure I can edit the model without disrupting the existing reports and usage.
Any guidance from people who have faced this would be very helpful.
Thanks in advance!
Solved! Go to Solution.
Hello @msam1977_SM ,
Question 1 :
No, it is not possible to temporarily disable the large storage format directly from the Power BI service. Once a model is published with this format and incremental refresh enabled, downloading the PBIX file is disabled for performance and data security reasons.
The only way to retrieve an editable file is to work from the original PBIX file used for publishing. If you no longer have it, you will need to rebuild the model manually or use tools such as Tabular Editor to make changes directly to the model in the service.
Question 2 :
Yes, republishing a local PBIX file will overwrite the existing dataset in the Power BI service. This includes:
This may disrupt existing reports that depend on this dataset, especially if fields or tables are modified or deleted.
Question 3 :
Don't hesitate to give a kudo and validate as a solution if my answer helped you.
Have a nice day,
Vivien
Hi @msam1977_SM , If you have a Fabric capacity enabled workspace. You can extract the bim file from the dataset by leveraging the below code on a Fabric Notebook
%pip install semantic-link-labs==0.11.3
import sempy_labs as labs
#below function saves the Model.bim file to your lakehouse
my_bim = labs.get_semantic_model_bim(dataset='Your Dataset Name',workspace='Your Workspace Name')
#below function creates a copy of your existing dataset in your target workspace
labs.create_semantic_model_from_bim(dataset='Dataset-Copy',workspace='Your Workspace Name',bim_file=my_bim)
Once you find the copy you can download it, refresh it locally and work on it
Thanks,
Jai Rathinavel
Proud to be a Super User! | |
Hi Vivien, Thank you so much. The issue I’m facing now is this: as you mentioned, I opened the Semantic Model in Tabular Editor via the XMLA endpoint, which is correct. However, when I try to modify any queries, everything appears disabled—such as the source, and source type.
How would you suggest making changes in this scenario? thanks
Hello @msam1977_SM ,
Can you send screenshots to visualize the problem?
Have a nice day,
Vivien
above is screenshot from my Tabular Editor and you will see that Source part is disable. thks
Hello @msam1977_SM ,
Question 1 :
No, it is not possible to temporarily disable the large storage format directly from the Power BI service. Once a model is published with this format and incremental refresh enabled, downloading the PBIX file is disabled for performance and data security reasons.
The only way to retrieve an editable file is to work from the original PBIX file used for publishing. If you no longer have it, you will need to rebuild the model manually or use tools such as Tabular Editor to make changes directly to the model in the service.
Question 2 :
Yes, republishing a local PBIX file will overwrite the existing dataset in the Power BI service. This includes:
This may disrupt existing reports that depend on this dataset, especially if fields or tables are modified or deleted.
Question 3 :
Don't hesitate to give a kudo and validate as a solution if my answer helped you.
Have a nice day,
Vivien