Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All ,
How to Convert qvw file to qvd file with out using Transformation and with transformation From Data Sources in qlikView
Regards ,
Sai Madhu.
Did not get you?
Could you elaborate more?
Are you asking for QVW to QVD conversion?
Are you looking to create QVD for all existing tables in QVW ? If so then use below script
FOR vCount = 0 to NoOfTables()-1
LET vTableName = TableName($(vCount));
STORE $(vTableName) INTO $(vTableName).qvd (qvd);
NEXT vCount
check this thread?
Hi,
Please read the following post to understand the difference between a qvw and qvd: difference between qvd and qvw
Hi,
qvw to qvd file conversion
Regards,
Sai Madhu
I don't think you can convert qvw file to qvd. You can extract tables present in QVW & store it as QVD using below code.
FOR vCount = 0 to NoOfTables()-1
LET vTableName = TableName($(vCount));
STORE $(vTableName) INTO $(vTableName).qvd (qvd);
NEXT vCount
Sai,
QVW is an interface for you where you can execute Qlik code, can pull the data from different data sources, and using scripting code you can convert those data sources into multiple tables/qvds.
Storing a interface like QVW into QVD, why it is required?
I do not think so that we can do it if I have understood your requirement very well
Hi,
QVW: is called Qlikview Working file: it contains data as well as the UI.
QVD: Qvd is Qlikview Data file. it contains qlikview readable data. data extraction from qvd is very fast as compare to other sources that is why we try to save our data in qvd format
Can you elaborate your requirement more specifically.
-Hirish
Check this link.