Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Convert qvw to qvd File

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.

Reddys310

10 Replies
Anonymous
Not applicable
Author

Did not get you?

Could you elaborate more?

Are you asking for QVW to QVD conversion?

manojkulkarni
Partner - Specialist II
Partner - Specialist II

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

Anonymous
Not applicable
Author

check this thread?

QVD, QVW and QVX

Anonymous
Not applicable
Author

Hi,

Please read the following post to understand the difference between a qvw and qvd: difference between qvd and qvw

Not applicable
Author

Hi,

qvw to qvd file conversion    

Regards,

Sai Madhu

manojkulkarni
Partner - Specialist II
Partner - Specialist II

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

Anonymous
Not applicable
Author

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

HirisH_V7
Master
Master

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

HirisH
“Aspire to Inspire before we Expire!”
jagan
Luminary Alumni
Luminary Alumni