Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to calculate Load time.

Hi,

For performance point of view , i just want to know how to calculate load time of a Qvd. as data on Qvd grows day by day due to incremental load. load will help in predicting the time require in future to load a particular dashboard. Need advice.

Regards,

Piyush.

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Piyush

At the beginning of your script set a variable to the start time

     let vstart = now() ;

Similar at the end

     let vEnd = now() ;

Then you subtract End time form Start Time.

You may wish to use these values to populate a QVD and start building up a history.

Best Regards,     Bill

View solution in original post

2 Replies
Anonymous
Not applicable
Author

Piyush

At the beginning of your script set a variable to the start time

     let vstart = now() ;

Similar at the end

     let vEnd = now() ;

Then you subtract End time form Start Time.

You may wish to use these values to populate a QVD and start building up a history.

Best Regards,     Bill

israrkhan
Specialist II
Specialist II

Hi,

I think you should do like in script,

if you create two variables in script, just before load statement, assign now() to variable,

Let vStartTime = Now();

load,

a,

b,

c

Then at the create another variable and assign now() to second variable,

and the on the front end, Variable2 - Variable2.....