ORA-01426: numeric overflow exception when executing stored procedure - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T22:28:27Zhttp://stackoverflow.com/feeds/question/351339http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/351339/ora-01426-numeric-overflow-exception-when-executing-stored-procedure1ORA-01426: numeric overflow exception when executing stored procedureprapin2008-12-08T23:37:01Z2008-12-10T01:50:58Z
<p>I ported a Delphi 6 application to Delphi 2007 and it uses BDE to connect to
an Oracle 9i database. I am getting an "ORA-01426: numeric overflow
exception" when I execute a stored procedure. This happens randomly and if I
re-run the stored procedure through the application with the same parameters
the exception does not occur.</p>
<p>The old Delphi 6 application works just fine.</p>
<p>Ideas anybody??</p>
<p>Thanks
Prapin</p>
http://stackoverflow.com/questions/351339/ora-01426-numeric-overflow-exception-when-executing-stored-procedure/351580#3515801Answer by Argalatyr for ORA-01426: numeric overflow exception when executing stored procedureArgalatyr2008-12-09T02:11:38Z2008-12-09T02:11:38Z<p>Showing a code example could make this easier, but here are a couple of hunches: </p>
<ol>
<li><p>Are the data coming from another source (like Excel) that does not have explicit data types? Mixed or ambiguous data may be causing BDE to assign the wrong data type to a field that then is incompatible with the database field.</p></li>
<li><p>Could be a numeric formatting issue (some U.S.-centric components do not handle localization properly). Is your localization other than English(U.S.)? Is so, does changing it to English(U.S.) fix the problem?</p></li>
</ol>
<p>If these completely miss, more details might help.</p>
http://stackoverflow.com/questions/351339/ora-01426-numeric-overflow-exception-when-executing-stored-procedure/354871#3548710Answer by Argalatyr for ORA-01426: numeric overflow exception when executing stored procedureArgalatyr2008-12-10T01:50:58Z2008-12-10T01:50:58Z<p>Does the D6 version of the app use the same version of BDE, Oracle, and the database? If so, then it's probably something about the data being passed (either content or mechanism). </p>
<p>Not knowing what those data are, nor how they are passed, makes it pretty hard to diagnose.</p>