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