Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Azure_newbie
Helper II
Helper II

How to refresh data source from Datalake to get new schema

My ex-teammate built a Power BI dashboard with Datalake as datasource .

The datasource is querying with below script:

 

= fn_ReadDeltaTable(
AzureStorage.DataLake(
"https://myadls.dfs.core.windows.net/public/data/MyDeltaTable.delta",
[HierarchicalNavigation = false]))

 

 

We need to refresh this datasource because the Delta table have added and remove some columns. I want to reflect the change on Power BI dashboard. How could I refresh the schema?

2 REPLIES 2
Anonymous
Not applicable

Hi @Azure_newbie ,

To refresh the architecture of the Power BI dashboard after making changes in the Delta table, you can perform the following steps:

Explicitly update the schema:
You can explicitly update the schema of a Delta table by adding new columns, reordering existing columns, or renaming columns using a Data Definition Language (DDL) statement.
For example, to add a column, use the following SQL command:

ALTER TABLE table_name ADD COLUMNS (col_name data_type [COMMENT col_comment] [FIRST|AFTER colA_name], ...)

Below is the official link will help you:

Update Delta Lake table schema - Azure Databricks | Microsoft Learn

Best Regards,

Xianda Tang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

The article you quoted above is how to update datalake schema, which I have already done. The problem is how to reflect the schema change in Power BI. 

 

For instance, I have added a new column "columnA" in Datalake. But in Power BI Dashboard column A still exist. There is no refresh button for the Datalake source.

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.