I'm on Oracle 10g and have the following table structure: id, paragraph
I want to group by id and concatenate the paragraphs. Each paragraph maybe 1500 characters or more.
When I try the wm_concat function, it complains that the string buffer is too small. I actually tried many of the examples on Oracle's website and they all fail with the error the string buffer is too small.
select id, wm_concat(paragraph) from paragraphs group by id
how do I solve this?
So, I'm guessing the error is
ORA-06502
and I can see how you might think that this doesn't apply to you in this situation.However, this is the fault of
wm_concat
. This is a function and is constrained by Oracle's maximum varchar length in PL\SQL of 32,767 and 4,000 in standard SQL. Unfortunately, I assume, because of the way that wm_concat works or because of any lower constraints within the function or because you're using it in a select you can't get anywhere near the upper limit.There is another option,
stragg
, Tom Kyte's string aggregate function. If we look at the following comparison between the two you'll see that they perform almost identically and that the limit of both is a length of around 4,000, i.e. the standard SQL maximum.stragg
is slightly faster, probably due to caching.As for solving it, I'm afraid you can't. Once you hit that limit that's it. You'll have to find a different way of doing your aggregations or ask yourself if you really need to.