Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
You can convert date from string to number format by using date# function and then monitor the performance.
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.
Thanks for reply Jagan ,
Its qlikview load script .