Forum Discussion

aviha12's avatar
aviha12
Frequent Visitor
9 months ago
Solved

Incremental Refresh with Appended Web Source

Hey everyone, I'm stuck with this problem and hoping someone has dealt with it before. I have 3 large fact tables that I need to set up incremental refresh on. The catch is that each table needs ...
  • v-venuppu's avatar
    9 months ago

    Hi aviha12 ,

    Thank you for reaching out to Microsoft Fabric Community.

    Thank you GilbertQ lbendlin for the prompt response.

    To make incremental refresh work when appending SQL + non-folding Web data, separate the queries.Apply incremental refresh only on the SQL fact tables (they fold). Load the Web tables separately as small “today-only” datasets without incremental refresh.Then create a final table that simply UNIONs/APPENDs the SQL incremental table with the Web table.The incremental partitions are created from the SQL source, and the Web data is small enough to load fully each refresh.This pattern avoids breaking query folding and is the Microsoft-recommended approach for combining folding + non-folding sources.

     

  • lbendlin's avatar
    lbendlin
    8 months ago

    That's something you would need to do in code, for example via EXCEPT. Having duplicated data across partitions is very highly undesirable.