-3

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

Community
  • 1
  • 1
esastincy
  • 1,607
  • 8
  • 28
  • 38

3 Answers3

3

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.

Codo
  • 75,595
  • 17
  • 168
  • 206
2

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

gandarez
  • 2,609
  • 4
  • 34
  • 47
1

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

lgtelles
  • 41
  • 3