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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Iam loading 1 qvw file by using Binary load in that i have 4 tables A,B,C and D after loading the link was formed for B,Cand D tables now i want to add new 50 records to the C table how can i do that?


Hi can any one plz share the answer

2 Replies
Not applicable
Author


Hi,

If you have already records just find out the last record recno() then use

Let vMaxRecno= peek('TableC',-1,'Recno()');

Tablec:

Load *

       from C where recno()> $(vMaxRecno);

Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Use the concatenate keyword to specify that the data from the next load statement should be added to TableC.

Concatenate(TableC)

LOAD

     ....// 50 records

FROM ...somewhere...;


talk is cheap, supply exceeds demand