Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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
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)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Fabric update to learn about new features.