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: 
ahmar811
Creator III
Creator III

Create QVD using Binary load ?


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

1 Solution

Accepted Solutions
ahmar811
Creator III
Creator III
Author

Thanks for your response friend I got my solution.

View solution in original post

6 Replies
jonathandienst
Partner - Champion III
Partner - Champion III

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.

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
Anonymous
Not applicable

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 ?

How to store table in qliksense

[Qlik Sense] - Store into QVD

jagan
Partner - Champion III
Partner - Champion III

Hi,

Simply write the below statement to create QVD.

STORE QVTableName INTO FileName.qvd;

Regards,

Jagan.

jagan
Partner - Champion III
Partner - Champion III

Check this link for sample script.

Storing all tables in Qlikview file to QVD

martinpohl
Partner - Master
Partner - Master

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

ahmar811
Creator III
Creator III
Author

Thanks for your response friend I got my solution.