I am working with Informatica mapping which updates a column in oracle table. The column has a datatype of VARCHAR2 (4000).
Now I want to update the column with a value more than 4000 characters,i tried the datatypes LONG/CLOB but then also it is being able to accommodate only up to 4000 characters.
I also tried to to update the column using manual sql query but it is giving error.
Please advise the best way to store more than 4000 characters in the column. Thanks in advance.
Rahul