Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Manage script loading error

I would like to know if is it feasible to manage script loading errors. I have an application that has to reload every 15 minutes but sometimes, cause SQL SERVER, my queries are deadlocked. I am wondering if is it possible to do something in the loading script as :

On error .... exit

Thanks in advance

1 Solution

Accepted Solutions
Not applicable
Author

you need to add the following:

set ErrorMode=0;

if  (ScriptError = 1) then

          exit script;

end if

set errormode=1;

View solution in original post

1 Reply
Not applicable
Author

you need to add the following:

set ErrorMode=0;

if  (ScriptError = 1) then

          exit script;

end if

set errormode=1;