Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a QVW that loads at quarter past every hour but I want to add into the script a statement to the start of the that will mean it doesn't load at 11:15am, 12:15pm or 13:15.
How would i accomplish this?
Thanks in advance
W
Maybe you can use something like this in the beginnnig of the script:
let vReloadTime=now();
if (hour(vReloadTime) >=11 and hour(vReloadTime) <=13 ) then
//do nothing
else
//put your load statement here
end if;
Hi Warren,
Can you share the script you are using to load the QVW at every quater past ? It will be helpuf to find a solution.
Regards
KC
Maybe you can use something like this in the beginnnig of the script:
let vReloadTime=now();
if (hour(vReloadTime) >=11 and hour(vReloadTime) <=13 ) then
//do nothing
else
//put your load statement here
end if;
Hi,
If you have publisher the you can use hourly and then you can set trigger to run between XX:XX and XX:XX.
Regards
ASHFAQ
Hi,
I am currently using QlikView Management Console to schedule the reloads.
Regards
W
Ashfaq Mohammed wrote:
Hi,
If you have publisher the you can use hourly and then you can set trigger to run between XX:XX and XX:XX.
Regards
ASHFAQ
HI,
Im trying to avoid having to purchase publisher.