Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Only at Qlik Connect! Guest keynote Jesse Cole shares his secrets for daring to be different. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Store in QVD with Incremenatal Load

Hi Experts,

I have a requirement like, have to store data in QVD's by monthly with incremental load. How to achieve this?

Thanks,

1 Solution

Accepted Solutions
jagan
Partner - Champion III
Partner - Champion III

Hi,

Check this

https://www.resultdata.com/qlikview-incremental-loads-and-qvds/

Data:

LOAD

*

FROM DataSource

WHERE MonthName(DateFieldName) = MonthName(Today());

LET vCurrentMonth = MonthName(Today());

STORE Data INTO [$(vCurrentMonth).qvd];

Like this create qvd for every month.

Regards,

Jagan.

View solution in original post

5 Replies
swuehl
MVP
MVP

Download the delta load (incremental load) template from Rob Wunderlich's QV cookbook site:

http://qlikviewcookbook.com/download/delta-load-template/‌‌

It does a very good job in explaining the principles of an incremental load (see the script section of the QVW).

Hope this helps,

Stefan

Anonymous
Not applicable
Author

jagan
Partner - Champion III
Partner - Champion III

Hi,

Check this

https://www.resultdata.com/qlikview-incremental-loads-and-qvds/

Data:

LOAD

*

FROM DataSource

WHERE MonthName(DateFieldName) = MonthName(Today());

LET vCurrentMonth = MonthName(Today());

STORE Data INTO [$(vCurrentMonth).qvd];

Like this create qvd for every month.

Regards,

Jagan.