MySQL Query Logs Truncating Queries -
i'm looking @ general log i've enabled in mysql , it's working nicely. however, queries appear truncated little on 1000 characters.
what's deal that?
you should change field type, 'argument' field medium text, should change 'longtext' following query.
alter table `mysql`.`general_log` change `argument` `argument` longtext not null;
what kind of query great 1000?
maybe logging blob field?
Comments
Post a Comment