Hi Marco,
When I try to insert a big varchar2 (with 4000 characters) I'm getting an error: "ORA-01480: trailing null missing from STR bind value".
Could you please try the following:
1 - create table test (a varchar2(4000));
2 - select lpad('A',,'A') from dual;
3 - Open the result of the...