Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
how many ways to create qvd in qv?
thanks in advance
Using STORE command.
Store ABC into C:\Users\Desktop\QlikView\ABC.qvd;
and Please check below.
HI,
Try Below.
Temp:
Load * inline
[
A
1
2
3
4
];
Store Temp into Temp.qvd(qvd);
Regards
ASHFAQ
Hi
By,
store tblname into name.qvd;
also you can export table data into qvd go through below link
http://community.qlik.com/message/536603#536603
Also you use macro for the same approach like,
sub SaveTableToFile
set obj = ActiveDocument.GetSheetObject("CH01")
obj.ExportEx "e:\CH1inputs.qvd", 4
end sub
Hi
I want to know another type of qvd creation?
hi
I want to know another way to create the qvd?
Hi
I want to know another way to create the qvd?
Hi
vPath='destination path here';
sub storeDelete(vpath,vTableName)
store vTableName into $(vPath)$(vTableName).qvd;
drop table vTableName;
end sub
Table1:
load
*
from source;
call storeDelete(vPath,Table1);
Regards
Samwise