https://www.cnblogs.com/ShineTan/p/3298645.html
SELECT LPAD('x',4000,'x') || LPAD('x',4000,'x') FROM DUAL;
修改为:
SELECT TO_CLOB(LPAD('x',4000,'x')) || LPAD('x',4000,'x') FROM DUAL
Problem Description: The problem with this query is with the use of CONCAT operator (||). e.g.: select char1 || char2 from dual Concat operator returns char1 concatenated with char2. The string returned is in the same character set as char1. So here concat operator is trying to return varchar2, which has limit of 4000 characters and getting exceeded. This problem may also come when we try to CONCAT a VARCHAR2 with CLOB. e.g.: select char1 || clob from dual So here we can simply convert its first string to CLOB and avoid this error. After converting first string to CLOB, CONCAT operator will return string of CLOB type
标签:string,CLOB,4000,01489,concatenation,char1,LPAD,operator From: https://www.cnblogs.com/stono/p/18504065