Forum Discussion
Union Power BI Service Datasources
- 1 year ago
Hi nbarsley Could you follow these please
Publish both stale (daily) and current (30-minute) datasets to the same Power BI workspace.
In Power BI Desktop, use Get Data > Power BI Datasets to connect to both datasets. Build a composite model by querying both.
Create a calculated table using DAX:
CombinedData = UNION(Dataset1[TableName], Dataset2[TableName])Use the CombinedData table to build your report visuals.
Publish the combined model to the Power BI Service for dynamic updates.
If this post helped please do give a kudos and accept this as a solution
Thanks In Adavnce - 1 year ago
Have tried implementing Incremental refresh ?
https://learn.microsoft.com/en-us/power-bi/connect-data/incremental-refresh-overview
This will help achieving your requirement
Hi nbarsley Could you follow these please
Publish both stale (daily) and current (30-minute) datasets to the same Power BI workspace.
In Power BI Desktop, use Get Data > Power BI Datasets to connect to both datasets. Build a composite model by querying both.
Create a calculated table using DAX:
CombinedData = UNION(Dataset1[TableName], Dataset2[TableName])Use the CombinedData table to build your report visuals.
Publish the combined model to the Power BI Service for dynamic updates.
If this post helped please do give a kudos and accept this as a solution
Thanks In Adavnce
- nbarsley1 year agoHelper I
Thanks,
I did try this earlier but received this error message:
Something went wrong
The resultset of a query to external data source has exceeded the maximum allowed size of '1000000' rows.
- nbarsley1 year agoHelper I
Can you confirm that this works with more than 1,000,000 rows? It doesnt work for me.
- v-nmadadi-msft1 year agoCommunity Support
Hi nbarsley ,
Thanks for reaching out to the Microsoft fabric community forum.
It is not dependent on rows but instead on the storage size of semantic models.
The maximum size for semantic models imported into the Power BI service is 1 GB. These semantic models are heavily compressed to ensure high performance. In addition, in shared capacity, the service places a limit of 10 GB on the amount of uncompressed data that is processed during refresh. This limit accounts for the compression, and therefore is higher than the 1-GB maximum semantic model size. Semantic models in Power BI Premium aren't subject to these limits. If refresh in the Power BI service fails for this reason, reduce the amount of data being imported to Power BI and try again.
Source: Troubleshoot refresh scenarios - Power BI | Microsoft LearnIf you find this post helpful, please mark it as an "Accept as Solution" and consider giving a KUDOS.
Thanks and Regards