Good morning. I have a problem when concatenating columns in oracle and I do not know what to do. This would be a simplified query of what I do:
select t1.c1 || '##' || t1.c2 || '##' || t2.c3 from t1, t2
order by t1.c1 asc, t1.c2 asc, t2.c3 asc;
In my case the query is much larger, uses many more tables and concatenates many more columns. When concatenated, oracle launches the following error:
ORA-01489: el resultado de la concatenación de cadena de caracteres es demasiado largo
Is there any way to make that concatenation without limitation of characters? for example, using clob functions ...
I can not change the format because the answer is consumed by an external service and needs to be strings separated by two almoadillas ...
I hope you can help me.