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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
awu
Contributor
Contributor

Partial Reload Concatenate Add Only Load

I am trying to use the Partial Reload code below to remove and add data to a table already loaded to Qlik Sense.

if IsPartialReload() then

[Temp_Table]:
NoConcatenate add only LOAD *
Resident Original_Table
where [criteria for keeping records]
 ;

drop table Original_Table;

[Original_Table]:
NoConcatenate add only LOAD *
Resident Temp_Table;

drop table Temp_Table;

LIB CONNECT TO 'Qlik-Connection';

[Original_Table]:
concatenate add only LOAD
[List of Fields];

SQL SELECT
`List of Fields`,

from `GCP Table`

end if()

The part in bold works and the required data is kept but the subsequent concatenate add only load doesn't bring the new data in, what do I need to change to get this working?

Labels (2)
0 Replies