MySQL ERROR 1231 (42000):Variable 'character_set_client' can't be set to the value of 'NULL'

后端 未结 6 1282
陌清茗
陌清茗 2020-12-12 16:47

I\'ve a MySQL 5.0.84 running in a Slackware 13.0 Staging server and wanted to copy a single table to another server which was built to use Ubuntu 1

6条回答
  •  春和景丽
    2020-12-12 16:59

    Try to make the maximum allowed packet size arbitrarily high temporarily by typing in:

    mysql> set global max_allowed_packet=10000000000;
    

    /via http://injustfiveminutes.com/2013/02/14/errors-restoring-mysql-database-dump-on-wamp-environment/

提交回复
热议问题