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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
hello,
The data factory pipeline loads data from sql server into the warehouse tables.
This is done by dropping the warehouse table before the load.
Question:
How can I do incremental refresh into the table in the warehouse?
thanks
Solved! Go to Solution.
You can follow the below process :
Drop and create a staging table with the delta data from source
then write a custom logic to upsert /incremental load into destination table( as merge is not yet supported in fabric warehouse)
Hi @arkiboys2,
You can refer to the following tutorial to 'add the copy activity to copy incremental data' in data pipeline.(you need to modify the output destination to data warehouse instead of lakehouse)
Incrementally load data from Data Warehouse to Lakehouse - Microsoft Fabric | Microsoft Learn
Regards,
Xiaoxin Sheng
You can follow the below process :
Drop and create a staging table with the delta data from source
then write a custom logic to upsert /incremental load into destination table( as merge is not yet supported in fabric warehouse)
Hi @arkiboys2,
You can refer to the following tutorial to 'add the copy activity to copy incremental data' in data pipeline.(you need to modify the output destination to data warehouse instead of lakehouse)
Incrementally load data from Data Warehouse to Lakehouse - Microsoft Fabric | Microsoft Learn
Regards,
Xiaoxin Sheng