Can anyone help me with this exception?

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

ORA-06512: at "DM001.DFEE_AFT_IUD_JOURNAL", line 58

ORA-04088: error during execution of trigger 'DM001.DFEE_AFT_IUD_JOURNAL' ORA-06512: at line 4

link|improve this question

2  
Edit your question to show your code and your table DDL. – p.campbell Aug 16 '11 at 17:16
ora-01438.ora-code.com – user272735 Aug 17 '11 at 4:35
1  
What happened was the Primary Key was set up as a NUMBER(3) and when the value got to 999 the sequence started throwing this error. That is why it seemed to come out of no where when nothing had changed. – esastincy Aug 17 '11 at 17:54
feedback

3 Answers

up vote 2 down vote accepted

You are trying to insert a value in any column that has a "precision" larger than the defined.

link|improve this answer
feedback

You are trying to store a value into the field of a record that is longer than the column definition of the table allows.

Your column might be defined as NUMBER(3), but you're trying to store a longer number like 1250 into it.

link|improve this answer
feedback

You've probably tried to enter a value greater than de defined when you created the table (i.e. varchar2(4) -> value tried 10000)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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