Problem: Example: Declare Declare * ERROR at line 1: ORA-06502: PL/SQL: numeric or value error: character string buffer too small ORA-06512: at line 4 Cause: Variable length into clause v_variable1 is 5 character where output that trying to store in that variable is more than 5 character which cause the error.
Solution: Increase the length of the variable v_variable1. Example: Declare PL/SQL procedure successfully completed.
|