vote up 2 vote down star

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.

flag

72% accept rate

2 Answers

vote up 2 vote down check

From the 10g doc:

Numbers are returned in the range -2147483648 to 2147483647 depending on platform and machine, and your application must take the sign of the number into account in determining the interval. For instance, in the case of two negative numbers, application logic must allow that the first (earlier) number will be larger than the second (later) number which is closer to zero. By the same token, your application should also allow that the first (earlier) number be negative and the second (later) number be positive.

So while it is safe to assign the result of dbms_utility.get_time to a PLS_INTEGER it is theoretically possible (however unlikely) to have an overflow during the execution of your batch run. The difference between the two values would then be greater than 2^31.

If your job takes a lot of time (therefore increasing the chance that the overflow will happen), you may want to switch to a TIMESTAMP datatype.

link|flag
Agh, what a ghastly mess. Thanks for the clarification. I will now rest safely in the knowledge that I can wait until the DBA gets back from holiday, and foist the infernal thing on to him. – skaffman Jul 6 at 10:54
vote up 0 vote down

Assigning a negative value to your PLS_INTEGER variable does raise an ORA-01426:

SQL> l
  1  declare
  2    a pls_integer;
  3  begin
  4    a := -power(2,33);
  5* end;
SQL> /
declare
*
FOUT in regel 1:
.ORA-01426: numeric overflow
ORA-06512: at line 4

However, you seem to suggest that -214512572 is close to -2^31, but it's not, unless you forgot to typ a digit. Are we looking at a smoking gun?

Regards, Rob.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.