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: 
ali_hijazi
Partner - Master II
Partner - Master II

store multiple tables in one qvd document

Hello

can we store multiple tables in one qvd document?

if yes how can we load data from this document?

I can walk on water when it freezes
2 Replies
Not applicable

If those tables could be concatenated, the answer is yes.

If not, each table has to be stored in a single qvd file

Not applicable

If u want to save data from two tables into a single qvd then u need to either concatenate them and then give a single Table name.

If its really necessary for u then try this:

abc:

Load

Col(1),

Col(2),

'table a' as junk

from table a.csv;

Concatenate   

Load

Col(3),

Col(4),

'table b' as junk

from table b.csv;

Store abc into abc.qvd;