Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
koushik_btech20
Creator
Creator

Tracking the time of qvd generation

In my main server all qvd files are coming from another computer. So I have track these qvd date modified through a report.Please help...

2 Replies
its_anandrjs
Champion III
Champion III

Use

Load

FileTime('A.qvd') as X

From Location;

its_anandrjs
Champion III
Champion III

Load your table like below table

Load

FileBaseName() as FileBaseName,

FileName() as FileName,

FileSize() as FileSize,

FileTime() as FileTime

FROM

(qvd);

By Filetime you get the time when it is created.