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

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
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,

Labels (1)
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
Champion III
Champion III

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

avinashelite
MVP
MVP

Anonymous
Not applicable
Author

Chanty4u
MVP
MVP

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.