Skip to main content
Announcements
Qlik Community Office Hours - Bring your Ideation questions- May 15th, 11 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
koscumbs
Contributor III
Contributor III

Datapoint which shows most recent SQL execution time

Hello all,

I'm wondering if there's any datapoint that's generated by Qlik (or how to create one, if there's not) every time I load data into a QlikView.  In essence, I want to know how long each Qlik app takes to run, export, and create joins from the SQL queries I've used to source my analyses.

Anyone have any ideas?

Thanks in advance!

1 Solution

Accepted Solutions
vishsaggi
Champion III
Champion III

May be this not sure if this is what you want.

Use this variable before your LOAD Script.

LET vReloadTime = Now();

All your load scripts or SQL scripts here.

LET vReloadEndTime = Now();


Then in your sheet use a text box like


= 'Refresh Time Taken: ' & Interval(vReloadEndTime - vReloadTime, 'mm:ss')

View solution in original post

2 Replies
vishsaggi
Champion III
Champion III

May be this not sure if this is what you want.

Use this variable before your LOAD Script.

LET vReloadTime = Now();

All your load scripts or SQL scripts here.

LET vReloadEndTime = Now();


Then in your sheet use a text box like


= 'Refresh Time Taken: ' & Interval(vReloadEndTime - vReloadTime, 'mm:ss')

koscumbs
Contributor III
Contributor III
Author

I'm pretty sure this is going to work -- thanks Vishwarath!