Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

QVD overwrite script problem

My script is as follows:

CustomerTable:

Load

CustID,

Date

From Customers.QVD;

Concatenate (CustomerTable)

Load

CustID,

Date

Resident CustomerLoad;

Store *

From CustomerTable into Customers.QVD;

Unfortunately, when I add the store section of the code I get no error message, but I receive the message to reload previous script due to error after all script has finished. This causes the entire reload to have no affect. The purpose of this code is to store each daily load of the CustomerTable into the Customers.QVD table with the date of the load and all CustIDs on that day.

What am I doing wrong with this code?

1 Solution

Accepted Solutions
fernandotoledo
Partner - Specialist
Partner - Specialist

Have you tried only

STORE TABLE INTO TABLE.QVD;
?

View solution in original post

2 Replies
fernandotoledo
Partner - Specialist
Partner - Specialist

Have you tried only

STORE TABLE INTO TABLE.QVD;
?

Not applicable
Author

Thank you this worked!!!!