操作CLOB字段

/***************************** 
一、字符串小于32767时,可直接update 
更新一个NCLOB字段,字符串长度大约15000字节, 
直接写update table_name set column_name='xxx' where xxxx;报字符串太长。 此时需要用PL/SQL实现,将此字符串赋给varchar2变量,最大可支持32767字节; *****************************/ 
declare 
v_var  varchar2(32767) :='xxxxxxxxxx'; 
begin 
update pcfg_product set clause_link=v_var  where id='XXXXXXXXXXX'; 
end; 

你可能感兴趣的:(操作CLOB字段)