Anyone,
When I code this:
IF TO_NUMBER(var_priority_long_xf) >=0 THEN
var_justifypriority := NULL;
ELSE
var_justifypriority := var_priority_long_xf;
var_priority_long_xf := NULL;
END IF;
will an error condition on the TO_NUMBER conversion (i.e. non non-numeric value being converted) push into the ELSE or will it break in my script?
I should know this but just can not recall.
Thanks.,
David Miller