Error while updating a table with CLOB column:ORA-01461
问题 I have a table in Oracle Database as follows, create table test_clob( id1 number, clob_col clob); If i try to insert a varchar2 variable with size more than 4000 into the CLOB column, it inserts without any problem. insert into test_clob values (1,rpad('a',32760,'a')); commit; If i try to update the CLOB column as follows, it works perfectly fine. update test_clob set clob_col = rpad('b',32760,'b') where id1 = 1; commit; However, if i try to run the update statement as follows, it is failing