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

QVD Files

Please someone email me example with following

Creation of QVD file

Loading data from QVD file QVW file

Incremental load

Tkanks

2 Replies
rustyfishbones
Master II
Master II

here is a video to show how to create a QVD

Qlikview Create a QVD by RFB 144 - YouTube

to load data from a qvd to you select Table Files and Find the QVD in your directory

2013-10-17_0856.png

You can also find a video on youtube on how to complete an incremental load

HTH

Alan

Peter_Cammaert
Partner - Champion III
Partner - Champion III

Example of creation of QVD (assumes existing RESIDENT table Facts):

STORE Facts INTO Facts.QVD (qvd);

See also STORE statement in QlikView help.

Example of loading data from a QVD into a QVW document:

LOAD RecordID, Amount, Customer, OrderDate FROM Facts.QVD (qvd);

See also LOAD statement in QlikView Help.

Incremental Load depends of your data source, and your load strategy. See for example the BUFFER prefix in QlikView Help. Have a look at the attached document for informaiton on incremental load strategies and the usage of QVDs.

You can download and inspect multiple examples from http://demo.qlik.com. Download a demo document, open the script editor and look for operations on QVD files.

Peter