Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
kashaboinaraj
Creator
Creator

How to create qvd in qlilksense?

Hi

Iam new to qliksense please tell me how to create a qvd in qliksense. iam doing same as with qlikview store method but getting error.

Regards

vishnu

6 Replies
oknotsen
Master III
Master III

Can you give us a copy of the code you are using, as in native mode the code should work 100% the same way.

There is a slightly better way of doing it with libraries of course:

STORE TableName INTO 'lib://LibraryName/TableName.qvd';

So the only difference is the library name instead of the relative path to the QVD.

May you live in interesting times!
JonnyPoole
Employee
Employee

Agree with Onno - this should be straight forward with a change to the file location parameter of the STORE command.

For the full syntax for Qlik Sense refer to the online help:

http://help.qlik.com/sense/2.1/en-US/online/#../Subsystems/Hub/Content/Scripting/ScriptRegularStatem...

reddy-s
Master II
Master II

Hi Vishnu,

Going through the following videos in the link below will help you immensely.

New to Qlik Sense Videos

NareshGuntur
Partner - Specialist
Partner - Specialist

First you need to create a new connection(for the folder) where the qvds need to be stored.

Once you create the connection string, you need to point to that folder using lib.

Test:

Load * inline [

A, B

1, 2

];

Store Test into [lib://CreateQVD/Test.qvd(qvd)];

"CreateQVD" is the connection folder I have created.

Cheers,

Naresh

kashaboinaraj
Creator
Creator
Author

thanks all for reply

oknotsen
Master III
Master III

If your question is now answered, please flag the Correct Answer and Helpful Answers.

If not, please make clear what related question(s) you still have.

May you live in interesting times!