Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> 10g Bug with Numeric Precision/Scale?
I've encountered something that I believe is a bug in PL/SQL under 10g
(at least on 10.1.0.3).
Here's an example script:
DBMS_OUTPUT.Put_Line(a); DBMS_OUTPUT.Put_Line(a1); DBMS_OUTPUT.Put_Line(a2); DBMS_OUTPUT.Put_Line(a3); DBMS_OUTPUT.Put_Line(b); DBMS_OUTPUT.Put_Line(b1); DBMS_OUTPUT.Put_Line(b2); DBMS_OUTPUT.Put_Line(b3);
DROP TABLE MYTABLE;
The output is as follows on 10.1.0.3.0:
1.23100007 1.23 1.23 1.231 1.23100007 1.23100007 1.23100007 1.231
and on an old 8.1.7.2.0 database (I don't have 9i handy)
1.23100007 1.23 1.23 1.231 1.23100007 1.23 1.23 1.231
Comments? Received on Wed Sep 07 2005 - 09:55:48 CDT
![]() |
![]() |