Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
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
Hi,
Syntax for Store command is.
Store YourTableName into YourTableName.qvd (qvd);
Hope this helps
Thanks & Regards
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
use this syntax inpace
Store tablename into D:\Users\Desktop\Deploy Folder\Filename.qvd;
hope this helps
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);
just try this.
Store tablename into
Write like
Store tablename into 'D:\Users\Desktop\Deploy Folder\Filename.qvd' (QVD);
Hope this helps
You can write like this also
let vPath = 'D:\Users\Desktop\Deploy Folder'
Store tablename into $(vPath)\Filename.qvd (QVD);
Hope this helps
Check the access permissions on the destination folder.