Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
RMMFCA
Contributor II
Contributor II

Create A QVD From A Resident Join

Hello,

I am running into a small issue and can't understand why it is happening. In the data editor, I have the following piece of code that fails...

Union:
LOAD * RESIDENT [MKTDefn_201808];
LEFT JOIN
LOAD * RESIDENT [FCA_MARS];
STORE Union INTO [lib://DNA_Folder/QVD_RAFAL/Registration.QVD] (QVD);
DROP TABLE Union;

I have other things processing before this piece of code, but this is where it fails. The error I receive is...

The following error occurred:
Table 'Union' not found
The error occurred here:
STORE Union INTO [lib://DNA_Folder/QVD/Registration.QVD] (QVD)
Data has not been loaded. Please correct the error and try loading again.

Can't you store containers from memory into a QVD? Thanks in advance! 

1 Solution

Accepted Solutions
m_woolf
Master II
Master II

You probably need:

Union:
Noconcatenate
Load ....

View solution in original post

1 Reply
m_woolf
Master II
Master II

You probably need:

Union:
Noconcatenate
Load ....