Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
you need to add the following:
set ErrorMode=0;
if (ScriptError = 1) then
exit script;
end if
set errormode=1;
you need to add the following:
set ErrorMode=0;
if (ScriptError = 1) then
exit script;
end if
set errormode=1;