Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
AIShatiLove
Contributor III
Contributor III

Qvd ( simple)

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

Labels (1)
1 Solution

Accepted Solutions
Taoufiq_Zarra
MVP
MVP

@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 :

https://help.qlik.com/en-US/qlikview/April2020/Subsystems/Client/Content/QV_QlikView/QVD_Incremental...

Regards,
Taoufiq ZARRA

"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "

(you can mark up to 3 "solutions") 😉

View solution in original post

2 Replies
Taoufiq_Zarra
MVP
MVP

@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 :

https://help.qlik.com/en-US/qlikview/April2020/Subsystems/Client/Content/QV_QlikView/QVD_Incremental...

Regards,
Taoufiq ZARRA

"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "

(you can mark up to 3 "solutions") 😉
Chanty4u
MVP
MVP

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