RE: group_concat display limit

2008-01-08 Thread Rolando Edwards
The variable 'group_concat_max_len' has a default of 1024 (1K) Add this to you're my.cnf to make it 8K [mysqld] group_concat_max_len=8192 -- Another way without altering 'group_concat_max_len' is To manually concatenate the string pieces with blanks in between The only limit is

Re: group_concat display limit

2008-01-07 Thread Moon's Father
learnt. On Jan 8, 2008 2:11 PM, Werner Puschitz <[EMAIL PROTECTED]> wrote: > Andrey Dmitriev wrote: > > All, > > > > We are using group_concat but there seems to be some sort of display > > limit. > > Is there are a way to unset or increase it? > > > > Thanks, > > Andrey > > > > You can change th

Re: group_concat display limit

2008-01-07 Thread Werner Puschitz
Andrey Dmitriev wrote: > All, > > We are using group_concat but there seems to be some sort of display > limit. > Is there are a way to unset or increase it? > > Thanks, > Andrey > You can change the maximum length by setting the group_concat_max_len system variable to a higher value which is

Re: group_concat display limit

2008-01-07 Thread Moon's Father
You should change your sql to related sub query. On Jan 8, 2008 1:34 PM, Andrey Dmitriev <[EMAIL PROTECTED]> wrote: > All, > > We are using group_concat but there seems to be some sort of display > limit. > Is there are a way to unset or increase it? > > Thanks, > Andrey > > -- I'm a mysql DBA