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: 
Not applicable

[Qlik Sense] - Store into QVD

   Hi All,

easy to do in Qlikview, but i'm lost in this new product.

How to store a table into a QVD ? how get those datas from the QVD ???

regard

1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

First you need to add a Data Connection of the Folder type. Once you've created this you can use it to store and read qvd files. In the example below a Data Connection with the name QVData was created first and then used in the load and store statements.

Transactions:

LOAD * FROM 'lib://QVdata/salestodate.qvd' (qvd);

STORE Transactions INTO 'lib://QVdata/Transactions.qvd' (qvd);


talk is cheap, supply exceeds demand

View solution in original post

3 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

First you need to add a Data Connection of the Folder type. Once you've created this you can use it to store and read qvd files. In the example below a Data Connection with the name QVData was created first and then used in the load and store statements.

Transactions:

LOAD * FROM 'lib://QVdata/salestodate.qvd' (qvd);

STORE Transactions INTO 'lib://QVdata/Transactions.qvd' (qvd);


talk is cheap, supply exceeds demand
Not applicable
Author

Hi Gysbert!

And to store a table named as a variable?

if your table name is a variable, for example: $(TableName) (value is 'MyTable')

Store $(TableName) into 'lib://Qvdata/$(TableName).qvd (qvd);

Doesn´t works. I have a check control on debugging mode and Qlik sense is doing that:

store MyTable into 'lib://Qvdata/$(TableName).qvd (qvd);

and I have a QVD file named $(TableName) and I need that the QVD file is named as MyTable

Thank you

Not applicable
Author

Excuse me, I solved it

Store $(TableName) into 'lib://Qvdata/$(TableName).qvd' (qvd);

using the last ' in the correct position