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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
ivandrago
Creator II
Creator II

Last Execution time for each QVD generated

Hi,

I want to know the last eexcution time and how long the Task took generate the QVD file? Is this possible?

Thanks

11 Replies
sundarakumar
Specialist II
Specialist II

PFA, I the start and end time are same in the app as it is a very small application.

I have used now as the flag. While concatenating all the data in the main application u can use the latest time as flag.

I have shown the data creation for one qvd. similar tables should be created in the other qvd's also.

all these qvd's that are created an be concatenated in the main application, which can be used as the master qvd data details.

Hope this helps.

-Sundar

its_anandrjs
Champion III
Champion III

You can load your table like below

It is a example do changes from your own table

LET vStart = Now();

LET Tablename = 'Customer';

$(Tablename):

SQL SELECT *

FROM Customers;

LET vEnd = now();

Let vtottime =TIME(vEnd-vStart,'hh:mm:ss');

LOAD * Inline

[

Start,End,Tablename,ExecutionTime

'$(vStart)','$(vEnd)','$(Tablename)','$(vtottime)'

];