Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
jblomqvist
Specialist
Specialist

How to find which app/QVF creates a specific QVD file?

Hello,

Is there a way to find out which app/QVF file creates a specific QVD file?

We have over a hundred tasks where some apps do the ETL and want to know which app creates or/and updates a QVD file.

Labels (1)
2 Solutions

Accepted Solutions
anderseriksson
Partner - Specialist
Partner - Specialist

If you open the qvd-file in an editor the first part of it is in xml and there is a tag <CreatorDoc>

View solution in original post

Ken_T
Specialist
Specialist

you can also load the qvd into an app and read the Creator doc, if the qvd is too big for an outside editor.

LOAD CreatorDoc FROM [lib://Connection_Name/QVDFileName.qvd] (XmlSimple, Table is [QvdTableHeader]);

View solution in original post

3 Replies
anderseriksson
Partner - Specialist
Partner - Specialist

If you open the qvd-file in an editor the first part of it is in xml and there is a tag <CreatorDoc>

Ken_T
Specialist
Specialist

you can also load the qvd into an app and read the Creator doc, if the qvd is too big for an outside editor.

LOAD CreatorDoc FROM [lib://Connection_Name/QVDFileName.qvd] (XmlSimple, Table is [QvdTableHeader]);

MartinMsc
Partner - Contributor
Partner - Contributor

What if the CreatorDoc is empty?