Hi
When I am trying to insert a huge Text String in to the Clob Column. I am getting the following
SQL0102N The string constant beginning with "'SELECT... " is too long.
Since the String i am trying to insert is too large, I broke them into two separate strings and try to insert it, but still i am getting the same error.
Following is the code we try to concat two large string and stored it in CLOB column.
BEGIN ATOMIC
declare txt1 varchar(30000);
declare txt2 varchar(30000);
set txt1 = 'Large Text 1......';
set txt2 = 'Large Text 2...... ';
insert into test1 values (concat(txt1,txt2));
END