Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
khajafareed
Contributor III
Contributor III

Incremental load issue

Hello All,

I have below data, for one task i have two records. While doing incremental load it is fetching only one record. How to fetch two or all the records if we have more than one or two.

SLA definitionTargetTaskStageBreach timeHas breachedUpdated
ResponseResponseINC0055052Completed2020-10-06 10:00:00FALSE2020-10-06 05:58:32
ResolutionResolutionINC0055052Completed2020-10-13 17:00:00FALSE2020-10-12 07:00:02
1 Solution

Accepted Solutions
martinpohl
Partner - Master
Partner - Master

in your script there is a statement

where not Exists(Number)

so each Number is only loaded one time, the first dataset the script will find.

mark this line to get all datas.

Regards

View solution in original post

4 Replies
MayilVahanan

HI @khajafareed 

If incremental load is based on breach time, it will fetch all / both the records.

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
khajafareed
Contributor III
Contributor III
Author

Thanks for response, i am doing incremental load based on updated field.But not getting both records.

martinpohl
Partner - Master
Partner - Master

How does your incremental load looks like?

Understand QlikView:

When press on reload or start a reload tasks, all datas in your app are deleted. 

So if you want to load old datas and new datas into one app you have to create an app that loads your datas from your source by day and store them into a qvd-file on your QlikView server (with day-name in filename). Then load all your datas (SLA*.qvd) into your app.

Regards

martinpohl
Partner - Master
Partner - Master

in your script there is a statement

where not Exists(Number)

so each Number is only loaded one time, the first dataset the script will find.

mark this line to get all datas.

Regards