Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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
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.
LOAD * FROM
you can use even the "table files" button into the script
load *
From $(qvdpath)tablename.qvd (qvd);
Hi RGV,
Go to Edit Script (CRTL+E) > Table files>Goto your pathand select.
Regards,
Nagarjuna
qvdpath =C:\Documents and Settings\Administrator\Desktop\QV_App.
store tablename into $(qvdpath)tablename.qvd;
Drop table tablename ;
NewTable:
Load *
from
$(qvdpath)tablename.qvd;
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.
Hi,
Try this
tablename:
LOAD
*
From $(qvdpath)\tablename.qvd (qvd);
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