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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

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
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors