So i have created a test table having a number column which is of the data type Number(11,8). Now when i am trying to insert the value 13332 in the table it is throwing an oracle error saying:
ORA-01438: value larger than specified precision allowed for this column
I am not sure why. The same works when i am inserting into a column with data type Number(12,6)
INSERT INTO MY_TABLE(COLUMN_1)
values('13332');