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

Announcements
FLASH SALE: Save $500! Use code FLASH2026 at checkout until Feb 14th at 11:59PM ET. Register Now!
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

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.