Możesz skorzystać z utl_i18n pakiet i unescape_reference() funkcji w szczególności. Oto przykład:
clear screen;
column res format a7;
select utl_i18n.unescape_reference(
rtrim(
xmlagg( -- use of xmlagg() function in
-- this situation seems to be unnecessary
XMLELEMENT(E,'I''m'||':')
).extract('//text()'),':'
)
) as res
from dual;
Wynik:
RES
-------
I'm