Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
sureshbn121
Contributor II
Contributor II

I am new to Qliksense.How to created on QVD in qliksense?

I am new to Qliksense.How to created on QVD in qliksense?

5 Replies
Tanalex
Creator II
Creator II

Multiple ways, either through the GUI or the data load editor.  Something like this,

TMP:

LOAD

*

SQL

     SELECT getdate();

STORE TMP INTO [lib://QVD/TMP.qvd] (qvd);

m_perreault
Creator III
Creator III

See here https://help.qlik.com/en-US/sense/April2018/Subsystems/Hub/Content/Scripting/ScriptRegularStatements...

Ex:

My Table:

Load *

From [lib://FolderConnection/myfile.csv]

(txt, codepage is 1252, embedded labels, delimiter is ',', msq);


Store [My Table] into [lib://FolderConnection/myfile.qvd] (qvd);

sureshbn121
Contributor II
Contributor II
Author

thank you.

praveenkumar_ma
Partner - Creator
Partner - Creator

Hi Suresh ,

First  1)You have to create Folder Connection "QVD" (Path to Folder where you want to save QVDs )

        2) then use STORE function.like

Store [TableName] into [lib://FOLDERCONNECTION/TableName.qvd] (qvd);


This Will help you


All the Best Suresh.


You can KNow anything in Community . Somany Experts there here to make you Understand.


Post your Statement Clearly so Experts can Understand.


Thanks

PM

sureshbn121
Contributor II
Contributor II
Author

thank you