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: 
Anonymous
Not applicable

Performance

Hi All,

I need to cut down the execution time where my script fetches data based on nelow condition.Are there any way to  rewrite the below condition to increase the performance .

where

num(SALESDATE) >= $(START_DATE) and num(SALESDATE) <= $(END_DATE);

Thanks

3 Replies
sagarkharpude
Creator III
Creator III

You can convert date from string to number format by using date# function and then monitor the performance.

jagan
Partner - Champion III
Partner - Champion III

Hi,

Is it SQL query or Qlikview Load script?

If it is SQL Query then creating Index on SALESDATE field will improve the performance.

If it is Qlikview Script, then convert the SALESDATE field to number when you are data in the QVD itself.

Generally Qlikview runs in Superfast mode but when you put where condition it runs in normal mode.  Since you need the condition to be implemented you have to use this.

Regards,

jagan.

Anonymous
Not applicable
Author

Thanks for reply Jagan ,

Its qlikview load script .