Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
qv_testing
Specialist II
Specialist II

incremental Load

Hi All,

1. Store the previous load as a QVD

2. Load the previous load as a QVD files.

3. get maximum date from previous QVD file

4. :Load the new data where data is greaterthan maximum date from previous QVD file.

this is the process of incremental load....................

but i don't have date field in my tables....

then how to implement......

Thanks in Advance................

3 Replies
Not applicable

Not applicable

Use this script

LET lastReloadTime = ReloadTime();

GA_DATA:

LOAD

    PK,

    Calendardate,

    Revenue

FROM (qvd);

CONCATENATE

LOAD

    PK,

    Calendardate,

    Revenue

FROM

(ooxml, embedded labels, table is Sheet1)

WHERE (Calendardate > $(lastReloadTime));

store GA_DATA into ;

er_mohit
Master II
Master II