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: 
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;