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: 
Not applicable

Having trouble read from a saved qvd file

I loaded a .tab file as attached and saved the data into a QVD file successfully by using following statement.

DATA_TEST:

LOAD SKU,

     STORE_NUMBER,

     TICKET_PRICE,

     INVENTORY_QNTY

FROM

(txt, utf8, embedded labels, delimiter is '\t', msq);

Store DATA_TEST into C:\Test.qvd;

Very straight forward and the resulted qvd file shows me the normal data sets as following:

But when I tried to read data from the saved Test.qvd  file with following statement,

LOAD *

FROM  C:\Test.qvd;

it gave me weird results as following.Feels like it is an xml codes or something. Where was it from? Where are my regular data?

Please help. Thank you.

1 Solution

Accepted Solutions
maxgro
MVP
MVP

LOAD *

FROM  C:\Test.qvd (qvd);

View solution in original post

2 Replies
maxgro
MVP
MVP

LOAD *

FROM  C:\Test.qvd (qvd);

Not applicable
Author

oh man!!! Thank you.