Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Deltaload data into QlikView

Hi,

from a SQL-Database data will be loaded into QlikView. In addition new data will be added on every day/week. It is possible to load only new data’s in QlikView, so a full load isn’t necessary?

Regards
Stefan

5 Replies
ashwanin
Specialist
Specialist

Yes, its possible.

Use partial load while uploading data in QlikView.

sudeepkm
Specialist III
Specialist III

May be incremental load is what you are looking for.

Re: Incremental load for Updation

vikasmahajan

You Need to store data into QVD and Apply Incremental Load.

Incremental Load

PFA sample.

Vikas

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.
sunilkumarqv
Specialist II
Specialist II

hi SteFan

It neccessary to reload for one time then below follow the scens;

let LastExecTime=reloadtime();

//Full Reload  for one time then uncomment it

A:

LOAD ID,

     Name,

     Amount,

     Modified

From

Incremental.xlsx

(ooxml, embedded labels, table is Full_Load);

store A into A.qvd;

// To test the script please comment the previous tab

A:

LOAD ID,

     Name,

     Amount,

     Modified    

FROM

Incremental.xlsx

(ooxml, embedded labels, table is Insert_Only)

where Modified>='$(LastExecTime)'; // The date comparision should be in text format

concatenate

LOAD ID,

     Name,

     Amount,

     Modified

FROM

A.qvd

(qvd);

store A into A.qvd;

let LastExecTime=reloadtime();

Hope it will helpfull

msteedle
Luminary Alumni
Luminary Alumni

The answer depends on the nature of the source data and how the history may change over time. QlikView has provided instructions for various scenarios right in the QlikView Desktop help. Look for the content called Using QVD Files for Incremental Load.