Question

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

Was it helpful?

Solution

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

OTHER TIPS

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.

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top