vote up 0 vote down star

I been working the whole week to troubleshot a production error.

I have eventually got the the point where I can find the culprit record which is causing all the mess.

I've got the following error message:

java.sql.SQLException: [BEA][Oracle JDBC Driver][Oracle]ORA-01438: value larger than specified precision allows for this column

Eventuall from all the info I think this might be the wrong data, the system is trying to insert:

10385274000

Into a NUMBER(10)

How can I know if that value fits or no?

Thank you

EDIT

As per Michel Todd suggestion:

create table xyz( testfield number( 10 ) );

insert into xyz values( 10385274000 )


Error: ORA-01438: value larger than specified precision allowed for this column

Thank you guys!!!

Thank you stackoverflow

EDIT

Notes to my self ( not to forget what was the problem )

I had this Oracle product which stores in a database table the time of an event

START_TIME|END_TIME

It turns out everynight it backups this information into another table but performs a trnsformation in the process. It does store as:

TOTALTIME

The problem comes when this field is calculated by subtracting ENDTIME - STARTTIME. The resulting number is stored in this column which is defined as: NUMBER(10)

Well, it turns out if END_TIME-START_TIME are too far away in the time ( about 4 months or so ) the value ( in milliseconds ) would be SO big it won't fit in the target column ( I guess it has something like endTime.getTime() - startTime.getTime() inside the code )

All this sounds too easy and too silly now, but it took me 4 day+ to find out, because since this is a closed application I didn't have a clue of what was happening, the only thing I've got was the stacktrace.

I had to reverse enginering ( in the OLD sense of the word, by hand and obviously with out the source ) all the process to find out this.

When I did it, I've got the same error in my "hand coded migrator" and find out how to solve it!!

flag

75% accept rate
If you do use the word 'Urgent', please use it in a readable format instead of a ongoing word. If it is urgent it is urgent, but people have to know that it is urgent, which is hard when it is : "Urgeeeent!" – Chacha102 Aug 1 at 1:14
1  
A q&d way to do it is to create a temp table containing a number(10) and trying to insert that value. It if it works, that's not the problem. – Michael Todd Aug 1 at 1:14

2 Answers

vote up 5 vote down check

The number 10 in NUMBER(10) specifies the field size. That means that the field can hold a number up to 10 characters long. Your number has 11 digits and thus the value is to large to fit. Anything smaller than (<) 10 billion (10 000 000 000) can be inserted without trouble. That's what you need to check for if you want to validate the value before inserting.

link|flag
Like if they were characters? – Oscar Reyes Aug 1 at 1:17
A quick Google gave this reference page: techonthenet.com/oracle/datatypes.php – Bevan Aug 1 at 1:18
The "10" in Number(10) specifies the total number of digits. Optionally, you can also specify the number of decimals. To quote the link above "For example, numeric(7,2) is a number that has 5 digits before the decimal and 2 digits after the decimal." – Bevan Aug 1 at 1:19
vote up 0 vote down

It won't fit - 10,385,274,000 is 11 characters when your column is defined as NUMBER(10). The maximum value your column can store is 9,999,999,999.

If you want to test prior to inserting, use LENGTH(TO_CHAR(column)). Omit the TO_CHAR() if you are dealing with text, assuming that the column data type is varchar(10).

link|flag

Your Answer

Get an OpenID
or

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