I have to concatenate below data
a b c
1 Text 22-03-2015
1 Text1 22-03-2015
2 Text2 24-05-2015
3 Text5 29-05-2015
1 Text11 23-03-2015
And the expected Output is
a b c
1 Text,text1 22-03-2015
1 Text11 23-03-2016
2 Text2 24-05-2015
3 Text5 29-05-2015
Tried wm_concat function and it works but i cant remove the duplicates from the data and usage of LISTAGG results in error
"ora-01489 result of string concatenation is too long in oracle"
error as columns b contains values greater than 4000 characters.
Any alternatives apart form these 2 functions?