Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
mahendragaur
Creator
Creator

Reload Time of qvd

Hello,

I want to show the reload time of qvd files which I used in my dashboard. Is there any way to do the same.

Note:- I don't want to show the reload time of dashboard like Reload(). I have to show the reload time of qvd.

6 Replies
ariel_klien
Specialist
Specialist

Hi,

you can try in the script putting the file time to a variable:

let vFileTime=FileTime('File_Name.qvd');

BR

Ariel

Peter_Cammaert
Partner - Champion III
Partner - Champion III

Every QVD file contains an XML header with details about creation date, number of fields, number of rows etc. QlikView script provides a set of functions to obtain these characteristics without even reading anything from the QVD data.

To get the creation date & time of a QVD file, you can use the QVDCreateTime(filename) function and store the return value in a variable or in a table (if you want to load the creation date of multiple QVD files).

Frank_Hartmann
Master II
Master II

this might be helpful:

Aufnahme_2017_05_17_14_11_13_10.gif

vardhancse
Specialist III
Specialist III

  Let vReloadTime = QvdCreateTime( 'your QVD file.qvd');

mohammadkhatimi
Partner - Specialist
Partner - Specialist

LOAD

'TableName1' as QvdName,

QvdCreateTime('$(RawQvd)TableName1.QVD') as QvdTime

AutoGenerate 1;

Concatenate

LOAD

'TableName2' as QvdName,

QvdCreateTime('$(RawQvd)TableName2.QVD') as QvdTime

AutoGenerate 1;

Hope this will helps u...!!

Regards,

Mohammad