Skip to main content
Announcements
Qlik Community Office Hours - Bring your Ideation questions- May 15th, 11 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

join qvd history with online load

Hi Guys,

Script:

//name table as arvival
Arival:
LOAD Zeit,
Aus,
Gesellschaft,
Flugnr.,
Status,
Bemerkung
FROM "Online Location"

//get today date
let varToday = replace(now(),':','-');

//store data into filename with date
store Arival into c:\arival--$(varToday).qvd;

//join history with new online data
join (Arival)
LOAD Zeit,
Aus,
Gesellschaft,
Flugnr.,
Status,
Bemerkung
FROM
c:\arival--*.qvd]
(qvd);


Question:

How can I join my history from qvd with the 1st online load form online location and keep all duplicate records (show all history + new data), Iam not sure if my Join is the correct way to do this.

Thanks,

MIichiel

1 Solution

Accepted Solutions
maneshkhottcpl
Partner - Creator III
Partner - Creator III

Hi,

Use Concatenate between two table load.

e.q

load * from A:

concatenate

Load * from B

View solution in original post

3 Replies
maneshkhottcpl
Partner - Creator III
Partner - Creator III

Hi,

Use Concatenate between two table load.

e.q

load * from A:

concatenate

Load * from B

tresesco
MVP
MVP

Instead of JOIN, use CONCATENATE. Hope this helps you.

Regards, tresesco

Not applicable
Author

Hi Manesh, Tresesco,

Thank you, problem solved!

Michiel