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.
user want to see historical detail data, so the amount could be big, but the total size of pbix file is just nearly 400MB,
when I refresh data on service, the error comes like this,
how can I solve this problem?
Solved! Go to Solution.
Hello @oakfootballclub ,
The issue occurs when a visual has attempted to query too much data for the server to complete the result with the available resources.
and you can follow the tips to optimize your report:
1.Do not expose in a view a column that is not necessary in the Power BI data model.
2.Optimize the DAX calculation used in this visual to use less memory and return faster or change what the visual displays.
3.Remove unnecessary precision or split granularity values to reduce cardinality(Significantly reduce highly unique datetime values by splitting the date and time into separate columns. )
This is the related document, you can view this content:
The “Visual Has Exceeded The Available Resources” Error In Power BI
Visual has exceeded the available resources - Table Visual
Error: Resource Governing - Microsoft Power BI Community
resources exceeded - Microsoft Power BI Community
Proud to be a Super User! | |
Hello @oakfootballclub ,
The issue occurs when a visual has attempted to query too much data for the server to complete the result with the available resources.
and you can follow the tips to optimize your report:
1.Do not expose in a view a column that is not necessary in the Power BI data model.
2.Optimize the DAX calculation used in this visual to use less memory and return faster or change what the visual displays.
3.Remove unnecessary precision or split granularity values to reduce cardinality(Significantly reduce highly unique datetime values by splitting the date and time into separate columns. )
This is the related document, you can view this content:
The “Visual Has Exceeded The Available Resources” Error In Power BI
Visual has exceeded the available resources - Table Visual
Error: Resource Governing - Microsoft Power BI Community
resources exceeded - Microsoft Power BI Community
Proud to be a Super User! | |
Thanks. what is maximum size for a pbix file to be published into service when using a single data table for pro license workspace and user?
for pro license is 1gb for premium it's 10gb.
Proud to be a Super User! | |
alternatively, if I do not refresh historical data everytime, just add the current data to the table, is there any solution or demo for postgre sql? Thanks.
check incremental refresh https://youtu.be/Kui_1G6kQIQ?si=uzFAGN1-wPkK1SNu
Proud to be a Super User! | |