Forum Discussion

hansei's avatar
hansei
Helper V
9 months ago
Solved

What is wrong with my incremental refresh?

I have a query that reads and processes excel files on SharePoint.  (It gets file using SharePoint.Contents.)  I am trying to implement incremental refresh and, at the same time, not read every file ...
  • sergej_og's avatar
    sergej_og
    9 months ago

    Thb, this incremental load is not going to work here in a proper (designed) way. In the past is was not possible to have one with this data source. This might have changed now?
    So if the amount of data from the Sharepoint is too big maybe this might be not the best way to use Sharepoint as a "Database". You are still reading files...this is something completely different like reading from a db. Using Sharepoint like this is often a pain.

    If you can try another (more robust) approach.

    Another idea...
    Maybe you can split your data in different dataflows - each with 6 months of data or so. Maybe you don't need data older than 6 months?
    Merge the results afterwards.
    Hope you got the idea.

    Regards