Oracle Error PLS-00216: NUMBER precision constraint must be in range (1 .. 38)

Oracle Error Message

PLS-00216: NUMBER precision constraint must be in range (1 .. 38)

Reason for the Error

A NUMBER variable was declared with a precision that is outside the legal range. Declarations such as N NUMBER(800) or N NUMBER(123,10) are not supported.

Solution

Change the illegal NUMBER precision constraint, making sure that it lies in the range 1 .. 38.