Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, Qlik
I'm wondering how I can put my data in a qvd file. I have an excel file and I want to speed up my download. I'm also wondering how I can update the qvd file later
@AIShatiLove to store on qvd from file you can use :
//load data into mytable
mytable:
LOAD ....
FROM
your file ...
//Store
Store mytable into xyz.qvd (qvd);
you can update qvd file like other file type
or you can use an incremental load , see this article :
@AIShatiLove to store on qvd from file you can use :
//load data into mytable
mytable:
LOAD ....
FROM
your file ...
//Store
Store mytable into xyz.qvd (qvd);
you can update qvd file like other file type
or you can use an incremental load , see this article :
Hi
Create a library were you want to store the QVD, for instance named "QVDFolder" (right panel in the data load editor)
After this use this command to store:
STORE commandes INTO [lib://QVDFolder/commandes.QVD] (qvd);