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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Incremental Load

How to do incremental load? Can anyone send me nice example to understand it. I am new to qlikview.

Thanks in Advance.....

1 Solution

Accepted Solutions
its_anandrjs
Champion III
Champion III

There are so many best examples related to the Incremental load in the Community you can refer that

One of them from example

View solution in original post

5 Replies
its_anandrjs
Champion III
Champion III

There are so many best examples related to the Incremental load in the Community you can refer that

One of them from example

Anonymous
Not applicable
Author

Thank u anand....

rido1421
Creator III
Creator III

Hi Venkat

What would you like to Achieve with your incremental load.

what data source will you be extracting from?

[

Anonymous
Not applicable
Author

Hi Rido,

I just want to know how to do incremental load in qlikview with nice example...i am not using any data source if u provide any excel data(to understand well)that would be great for me....

thanks in advance...

rido1421
Creator III
Creator III

Hi Venkat

if you have a scheduled a model to extract data from a database on a daily bases this could help you understand.

If you create the qvd 1st with one days data in it then apply the logic of the concatenate,

it will add data everyday to the qvd, this would be a form of an "Insert" incremental load.

there are many ways to do this though.

[TableName]

Select Name,

          branch,

          ID.

          Date

Where Date >= substr(to_char(trunc(sysdate)-1,'yyyymmdd')) ;

Concatenate

Load

Name,

branch,

ID,

Date


From

Store [TableName] into (qvd);

I hope this helps you understand