我想创建一个插入脚本,它将仅用于将一个记录插入到一个表中.
它有5列,其中一列是CLOB型.
当我试图它说,不能插入字符串是这么长时间.大于4000.
我需要一个插入语句与clob作为一个字段.
INSERT INTO tbltablename (id,NAME,description,accountnumber,fathername) VALUES (1,N'Name',clob'some very long string here,greater than 4000 characters',23,'John') ;
请指教.
请记住,sql字符串不能大于4000字节,而Pl / sql可以具有大到32767字节的字符串.见下面的例子,通过一个匿名块插入一个大字符串,我相信会做你需要做的一切.
原文链接:https://www.f2er.com/oracle/205549.html注意我将varchar2(32000)更改为CLOB
set serveroutput ON CREATE TABLE testclob ( id NUMBER,c CLOB,d VARCHAR2(4000) ); DECLARE reallybigtextstring CLOB := '123'; i INT; BEGIN WHILE Length(reallybigtextstring) <= 60000 LOOP reallybigtextstring := reallybigtextstring || '000000000000000000000000000000000'; END LOOP; INSERT INTO testclob (id,c,d) VALUES (0,reallybigtextstring,'done'); dbms_output.Put_line('I have finished inputting your clob: ' || Length(reallybigtextstring)); END; / SELECT * FROM testclob; "I have finished inputting your clob: 60030"