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: 
ferha_jafri
Partner - Creator III
Partner - Creator III

How QV stores data

Hello Everyone,

I need help in understanding the process of storing data as I know QV store data in qvd , but I want to know the steps involved the complete process when we open a QV application on Access Point .

Thanks in Advance

Ferha

3 Replies
Anil_Babu_Samineni

May be helps

Qlikview Data Storage

Please add me Anil_Babu_Samineni to interact faster when reply back. Speak low think High.

Before develop something, think If placed (The Right information | To the right people | At the Right time | In the Right place | With the Right context)
tajmohamed30
Creator III
Creator III

you can use command for storing the QVD

store table name into table name.qvd(qvd);

goro2010
Creator
Creator

This is an example of storing data in QVD format:

SET vDataQvds   = 'c:\Qlikview\Qvd\';

Customers:

SQL SELECT *

FROM "62_T".dbo."t_customer";

STORE "Customers" INTO '$(vDataQvds)Customers.qvd' (qvd);

DROP TABLE Customers;

//Hope this helps