Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
Vikash938
Contributor III
Contributor III

QVD, QVF

How to extract QVD files from QVF application??

Labels (1)
1 Solution

Accepted Solutions
Vegar
MVP
MVP

If you solely can use the qvf and not make any changes to I then you can still make use of @marcus_sommer  suggestion after loading your original qvf data into a new application using BINARY.

EXAMPLE:

binary LIB://qvf_directory/filename.qvf;

Paste Marcus suggestion here...

View solution in original post

2 Replies
marcus_sommer

In the end of the qvf-loadscript with something like this:

for i = 1 to nooftables()
   let t = tablename(tablenumber($(i));
   [$(t)] noconcatenate load * resident [$(t)];
   store [$(t)] into [$(t).qvd] (qvd); drop tables [$(t)];
next 

Vegar
MVP
MVP

If you solely can use the qvf and not make any changes to I then you can still make use of @marcus_sommer  suggestion after loading your original qvf data into a new application using BINARY.

EXAMPLE:

binary LIB://qvf_directory/filename.qvf;

Paste Marcus suggestion here...