Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello
can we store multiple tables in one qvd document?
if yes how can we load data from this document?
If those tables could be concatenated, the answer is yes.
If not, each table has to be stored in a single qvd file
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;