Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
archana_g
Partner - Contributor III
Partner - Contributor III

unable to store table data into QVD files.

hi

i have some table data that i need to store in qvd files. i tried the following command:

 

STORE QV_tablename into $(VQVDPath)QV_tablename.QVD

but then its showing:

" Table not found

STORE QV_tablename into D:\MyFolder\QV_tablename.QVD "

what is the error?

thanks in advance.

Archana

3 Replies
deepakk
Partner - Specialist III
Partner - Specialist III

hi Archana,

Its not able to find the table QV_tablename.  Check the name of the table .Since its case sensitive, it should be exactly the same.

eg:

QV_tablename:

Load * from Test;

STORE QV_tablename into $(VQVDPath)QV_tablename.QVD;

Deepak

Not applicable

Dear,

Archana.

Check the table name and

i think while storing your forgetted qvd in the perantesis.

To store the table into qvd the sysnatax is

STORE QV_tablename into $(VQVDPath)QV_tablename.QVD(qvd);

Thanks,

Mukram.

archana_g
Partner - Contributor III
Partner - Contributor III
Author

thanks

Actually the problem was two tables got merged and the query was not working.

Archana