Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

store qvd

Hi

I set the path of qvd .

qvdpath =C:\Documents and Settings\Administrator\Desktop\QV_App.

Now i stored the table into qvd like below

store into tablename $(qvdpath)tablename.qvd;

And how to  load the above qvd intio the script.

Any help will be appreciated.

Thanks

Labels (1)
1 Solution

Accepted Solutions
neha_shirsath
Specialist
Specialist

Hi,

Try This.

Go to Edit Script,

Set qvdpath =C:\Documents and Settings\Administrator\Desktop\QV_App;

import your Qvd

then you will see like below

Load *

from

;


Replace above bold format by $(qvdpath)\QVDNAME.qvd(qvd);

Regards,

Neha

View solution in original post

8 Replies
oknotsen
Master III
Master III

You load QVD files using the same wizard as you use for loading XLS or XML files (or any table file for that matter). Just press the "Table Files" button and point it to your QVD.

May you live in interesting times!
alexandros17
Partner - Champion III
Partner - Champion III

LOAD * FROM (qvd)

you can use even the "table files" button into the script

Not applicable
Author

load *

From $(qvdpath)tablename.qvd (qvd);

nagarjuna_kotha
Partner - Specialist II
Partner - Specialist II

Hi RGV,

Go to Edit Script (CRTL+E) > Table files>Goto your pathand select.

Regards,

Nagarjuna

manojkulkarni
Partner - Specialist II
Partner - Specialist II

qvdpath =C:\Documents and Settings\Administrator\Desktop\QV_App.

store tablename into $(qvdpath)tablename.qvd;

Drop table tablename ;

NewTable:

Load *

from

$(qvdpath)tablename.qvd;



prma7799
Master III
Master III

same as local data fetch like Excel etc...

Go to edit script

->table file

-> select qvd files which is already created by you on this path(C:\Documents and Settings\Administrator\Desktop\QV_App.) -> finish.

Gabriel
Partner - Specialist III
Partner - Specialist III

Hi,

Try this

tablename:                      

LOAD

     *

From $(qvdpath)\tablename.qvd (qvd);

neha_shirsath
Specialist
Specialist

Hi,

Try This.

Go to Edit Script,

Set qvdpath =C:\Documents and Settings\Administrator\Desktop\QV_App;

import your Qvd

then you will see like below

Load *

from

;


Replace above bold format by $(qvdpath)\QVDNAME.qvd(qvd);

Regards,

Neha