आपको जोड़ने की जरूरत है .getClobVal()
RTRIM से पहले अपने XMLType परिणाम के लिए।
XMLAGG बड़ी मात्रा में डेटा के साथ ठीक काम करता है। और TRIM CLOB के साथ ठीक काम करता है। लेकिन जब आप उन्हें एक साथ रखते हैं, तो Oracle XMLType को CLOB के बजाय VARCHAR2 में बदलने का प्रयास करता है।
उदाहरण:
create or replace function test_function return clob is
v_clob clob;
begin
v_clob := v_clob || lpad('a', 4000, 'a');
v_clob := v_clob || lpad('b', 4000, 'b');
return v_clob;
end;
/
--Works fine, returns an XMLType
select xmlagg(xmlelement("asdf", test_function)) from dual;
--Works fine, returns a CLOB
select trim(test_function) from dual;
--ORA-19011: Character string buffer too small
select trim(xmlagg(xmlelement("asdf", test_function))) from dual;
--Works
select trim(xmlagg(xmlelement("asdf", test_function)).getClobVal()) from dual;