How to increase GROUP_CONCAT function length in MySQL
http://forums.pentaho.com/showthread.php?135082-how-to-add-maximum-length-for-GROUP_CONCAT-in-pentaho-report-designer&p=330725#post330725
GROUP_CONCAT() in a MySQL query to convert multiple rows into a single string. However, the maximum length of the result of this function is 1024 characters.
I'm very well aware that I can change the param group_concat_max_len to increase this limit:
Above is set for SESSION
SET GLOBAL group_concat_max_len = 1000000;
above is set for GLOBAL
ref :- http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html#function_group-concat
http://rpbouman.blogspot.in/2008/07/calculating-nth-percentile-in-mysql.html
http://rpbouman.blogspot.in/2009_03_01_archive.html
GROUP_CONCAT() in a MySQL query to convert multiple rows into a single string. However, the maximum length of the result of this function is 1024 characters.
I'm very well aware that I can change the param group_concat_max_len to increase this limit:
SET SESSION group_concat_max_len = 1000000;
Above is set for SESSION
SET GLOBAL group_concat_max_len = 1000000;
above is set for GLOBAL
ref :- http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html#function_group-concat
http://rpbouman.blogspot.in/2008/07/calculating-nth-percentile-in-mysql.html
http://rpbouman.blogspot.in/2009_03_01_archive.html
attractive piece of information, I had come to know about your blog from my friend arjun, ahmedabad,i have read atleast eleven posts of yours by now, and let me tell you, your website gives the best and the most interesting information. This is just the kind of information that i had been looking for, i'm already your rss reader now and i would regularly watch out for the new posts, once again hats off to you! Thanks a lot once again, Regards, Single Row Function in sql
ReplyDeleteNilesh, Thanks this information helped me.
ReplyDeleteThanks Nilesh
ReplyDeleteYou saved mine too! Thanks,
ReplyDeleteEmanuele (Italy)
Thanks for your post. It helped me a lot with a clients wish to Export his data into a XML File where I had to store records from another table into one field. And it was allways only 1024 long.
ReplyDeleteWC Michael :)
Delete