Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Namita
Contributor
Contributor

Incremental Load in qliksense

Hi,

I am new to Qliksense.  And I want use Incremental load in my script.I have created 5 QVDs and loaded the data from  the same by joining (Left Keep)  the tables in transform layer. And the Modified date which is used to recognize new records  is in only in 1 table. So in this case how can I use incremental load for all the other tables.

Can anyone help me with this

1 Solution

Accepted Solutions
JordyWegman
Partner - Master
Partner - Master

Hi Namita,

Do you have a unique key in your table (QVD)? 

If no, create one.

If yes, use this key in your load to your database:

Database:
Load
 *
From [YourDatabase]
Where not Exists %Key
;

Then store this information as an increment and add the new added keys to the 'overall' key table so you can do the same load tomorrow and don't load the data from today again.

Jordy

Climber

Work smarter, not harder

View solution in original post

3 Replies
JordyWegman
Partner - Master
Partner - Master

Hi Namita,

Do you have a unique key in your table (QVD)? 

If no, create one.

If yes, use this key in your load to your database:

Database:
Load
 *
From [YourDatabase]
Where not Exists %Key
;

Then store this information as an increment and add the new added keys to the 'overall' key table so you can do the same load tomorrow and don't load the data from today again.

Jordy

Climber

Work smarter, not harder
Namita
Contributor
Contributor
Author

Thanks Jordy.... this worked
JordyWegman
Partner - Master
Partner - Master

Great, please mark the post as solved so other people can see the solution!

Jordy

Climber

Work smarter, not harder