Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Friend
I have a .qvw file i want to load data in QlikSense using binary load after that I need to create qvd.
Thank in advance
Ahmar Ansari
Thanks for your response friend I got my solution.
Yes you can do this by using a STORE statement after the binary load; but remember that a qvw file can contain many tables, while a qvd contains only a single table, so you may need to create more than one qvd file.
You can create but make sure you should know the name of table which is into binary file.
check this as well:
How to create the QVD files in QlikSense ?
Hi,
Simply write the below statement to create QVD.
STORE QVTableName INTO FileName.qvd;
Regards,
Jagan.
Check this link for sample script.
Remember:
in Qlik Sense there is the libary-content
Store mytable into xyz.qvd (qvd);
will store the table with desktop into
C:\Users\{user}\Documents\Qlik\Sense\Apps
with server on the server into
C:\Program Data\Qlik\Sense\Apps
While using the libary-content you can define the store-folder
Store mytable into 'lib://FolderConnection/myfile.qvd';
Regards
Thanks for your response friend I got my solution.