Working with very large text data and CLOB column
You should use the dbms_lob
package, the procedure to add some string to the clob is dbms_lob.append
.
DBMS_LOB documentation
declare
c1 clob;
c2 varchar2(32000);
begin
c1 := 'abc';
c2 := 'text, which contains 32 000 characters';
dbms_lob.append(c1, c2);
c2 := 'some more text, which contains 32 000 characters';
dbms_lob.append(c1, c2);
insert into t1 values (c1);
end;
I found this question while Googling how to append data to a CLOB. For my particular problem, I'm using a legacy PL/SQL system where I can't make use of the dbms_lob
package, so I thought that I would share my answer for the benefit of others in my situation.
Solution: Use Oracle's CONCAT function in a
SELECTquery, the
CONCATfunction works for the
CLOB` data type. For example (using @AlenOblak's example):
declare
c1 clob;
c2 varchar2(32000);
begin
c1 := 'abc';
c2 := 'text, which contains 32 000 characters';
SELECT CONCAT(c1, c2) INTO c1 FROM DUAL;
c2 := 'some more text, which contains 32 000 characters';
SELECT CONCAT(c1, c2) INTO c1 FROM DUAL;
insert into t1 values (c1);
end;
Hope that helps.