Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
mariozubieta
Contributor III
Contributor III

Update Rows on Table

Hello,

I'm currently trying to load information from a file, and replace the updated values on my qvd. For example:

exmpl.png

Any ones has ideas on how to do this. Both current qvd and update table fields are named the same.

thanks

1 Solution

Accepted Solutions
Anonymous
Not applicable

Load

ID,

Id as ExcludedID

from UpdateTable;

concatenate

Load

*

from ResidentQVDFile

where not exists(ExcludedID,ID);

Drop field ExcludedID;

View solution in original post

3 Replies
Anonymous
Not applicable

Load

ID

from UpdateTable;

concatenate

Load

*

from QVDFile

where not exists(ID);

mariozubieta
Contributor III
Contributor III
Author

is there a way to do it with the qvd loaded previously, without having to store it and load it.

thanks for the reponse.

Anonymous
Not applicable

Load

ID,

Id as ExcludedID

from UpdateTable;

concatenate

Load

*

from ResidentQVDFile

where not exists(ExcludedID,ID);

Drop field ExcludedID;