Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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
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.
thanks
Actually the problem was two tables got merged and the query was not working.
Archana