I am getting below error in one page Tabular Form in Oracle Apex 4.2 in production environment: ORA-06502: PL/SQL: numeric or value error: character string buffer too small
I can not debug in prod so I copied all objects including application in dev and UAT but I am unable to re produce this issue in any of the environment except PROD.
In PROD, its un predictable to understand the root cause.
I am expecting a workaround or any kind suggestion will be much appreciable.
varchar2(30)
local variable for a database column defined as avarchar2(50)
). Which would throw this error if a value longer than 30 characters was actually selected. It may be that only prod has the longer values. – Justin Cave