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: 
farolito20
Contributor III
Contributor III

adding data to existing qvd

How can I add extra data to a existing .qvd?

actualizacion:

load *

from  DimCustomers_Day1.qvd (qvd)

Where Checksum>'$(vMax)';

store actualizacion into DimCustomers_Day0.qvd (qvd);

but when I did store line, all old data was delete and replace with actualizacion table 😕

5 Replies
CELAMBARASAN
Partner - Champion
Partner - Champion

First you need to load QVD file that you stored before.

Try this

actualizacion:

load *

from  DimCustomers_Day0.qvd (qvd);

Concatenate //By default it will concatenate if you have same number of fields with same name.

load *

from  DimCustomers_Day1.qvd (qvd)

Where Checksum>'$(vMax)';

store actualizacion into DimCustomers_Day0.qvd (qvd);

farolito20
Contributor III
Contributor III
Author

the concatenate don't work if I dlete something from the DimCustomers_Day0.qvd (qvd) ?

CELAMBARASAN
Partner - Champion
Partner - Champion

When you will delete?

farolito20
Contributor III
Contributor III
Author

yes    

CELAMBARASAN
Partner - Champion
Partner - Champion

May be expecting this?

actualizacion:

load *

from  DimCustomers_Day1.qvd (qvd)

Where Checksum>'$(vMax)';

//Your delete operations here

Concatenate (actualizacion) load *

from  DimCustomers_Day0.qvd (qvd);//concatenate before you store

store actualizacion into DimCustomers_Day0.qvd (qvd);