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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Issue with QVD Creation

Hello All,

I am having an issue with the creation of QVDs.

The script runs without a problem and when it comes to storing the data in the QVD the script Breaks.

Any help regarding this issue will be appreciated.

16 Replies
its_anandrjs
Champion III
Champion III

Hi,

Can you provide your load script with store script may be some error in the STORE command or the QVD path also.

Hope this helps

Thanks & Regards

its_anandrjs
Champion III
Champion III

Hi,

Syntax for Store command is.

Store YourTableName into YourTableName.qvd (qvd);

Hope this helps

Thanks & Regards

Not applicable
Author

I cannot be providing the script as it is the organizations property bu the store statement is as follows:

Store tablename into 'D:\Users\Desktop\Deploy Folder\Filename.qvd'(QVD);

Thanks,

Sai

SunilChauhan
Champion II
Champion II

use this syntax inpace

Store tablename into D:\Users\Desktop\Deploy Folder\Filename.qvd;


hope this helps

Sunil Chauhan
MK_QSL
MVP
MVP

Syntax for QVD Store is as below...

Store TableName into 'Path\QVDName.qvd' (QVD);

example

Store TableName into 'C:\QlikView\\Data\QVD\QVDName.qvd' (QVD);

chiru_thota
Specialist
Specialist


just try this.

Store tablename into ;

its_anandrjs
Champion III
Champion III

Write like

  Store tablename into 'D:\Users\Desktop\Deploy Folder\Filename.qvd' (QVD);



Hope this helps

its_anandrjs
Champion III
Champion III

You can write like this also

let vPath = 'D:\Users\Desktop\Deploy Folder'


Store tablename into $(vPath)\Filename.qvd (QVD);

Hope this helps

srchilukoori
Specialist
Specialist

Check the access permissions on the destination folder.