I'm having problems with a mammoth legacy PL/SQL procedure which has the following logic:
l_elapsed := dbms_utility.get_time - l_timestamp;
where *l_elapsed* and *l_timestamp* are of type *PLS_INTEGER* and *l_timestamp* holds the result of a previous call to *get_time*
This line suddenly started failing during a batch run with a ORA-01426: numeric overflow
The documentation on *get_time* is a bit vague, possibly deliberately so, but it strongly suggests that the return value has no absolute significance, and can be pretty much any numeric value. So I was suspicious to see it being assigned to a *PLS_INTEGER*, which can only support 32 bit integers. Howver, the interweb is replete with examples of people doing exactly this kind of thing.
The smoking gun is found when I invoke *get_time* manually, it is returning a value of -214512572, which is suspiciously close to the min value of a 32 bit signed integer. I'm wondering if during the time elapsed between the first call to *get_time* and the next, Oracle's internal counter rolled over from its max value and its min value, resulting in an overflow when trying to subtract one from the other.
Is this a likely explanation? If so, is this an inherent flaw in the *get_time* function? I could just wait and see if the batch fails again tonight, but I'm keen to get an explanation for this behaviour before then.
