Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Storing in qvd and getting data from qvd

Dear colleagues,

Im trying to make a qvw archive lighter by storing data into qvd and getting the date from it.

I developed a very simple qvw to show what i am trying to do:

abc:

LOAD * INLINE [

    a, b

    10, 20

    30, 40

];

store abc into .\abc.qvd;

drop table abc;

BASE:

LOAD * FROM

.\abc.qvd;

However, the fields a and b are not being shown in the archive (the illustration is attached).

Can any of you help me out?

Regards,

1 Reply
Anonymous
Not applicable
Author

try

abc:

LOAD * INLINE [

    a, b

    10, 20

    30, 40

];

store abc into .\abc.qvd(qvd);