Skip to content
Advertisement

How do I remove CHR(0) from strings when using LISTAGG in Oracle DB?

I am trying to query an oracle database and get a list of names in a single cell of the result.

I have a query like the following which produces the names in separate rows:

However, when I try and use LISTAGG to concatenate those rows I get the following error:

Note that if I use LISTAGG on a string made from concatenating INT values, the query works as expected:

I suspect the problem is that the firstname and lastname fields are null-terminated and LISTAGG is not properly removing the null characters from the result. I’m not sure how I can remove the null characters from the result of the inner query though.

Note that this is a client’s database and I am not allowed to modify its contents. I need to be able to read the fields in their current format and produce the desired output.

Advertisement

Answer

I had the same problem. The solution for me was:

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement