ORA-01489: result of string concatenation is too long

stono發表於2024-10-26

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

相關文章