Forum Discussion

arkiboys2's avatar
arkiboys2
Helper IV
2 years ago
Solved

dynamic refresh of data

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 int...
  • NandanHegde's avatar
    2 years ago

    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)