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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
sarfaraz_sheikh
Contributor III
Contributor III

Regarding incremental reload

Hi ALL,

If any new field/column is added in Database like oracle,mysql etc....then  can we do directly reload or otherwise we will have to do concatenate with existing .....i am confused in that little bit....Please help

Sarfaraz

2 Replies
sasikanth
Master
Master

HI ,

please go through the Following link

Three Types of Qlikview Incremental Loads | resultdata

Peter_Cammaert
Partner - Champion III
Partner - Champion III

If your DB table has a primary key, and no records have disappeared from the DB table vs your copy, you can do a JOIN, like:

LEFT JOIN (ResidentTable)

SQL SELECT PK_Field1, PK_Field2, ..., ExtraField1, ExtraField2, ...

FROM SQLTable;

In any other case I would suggest to adjust your script and do a full reload.

Best,

Peter