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

后端 未结 6 1292
陌清茗
陌清茗 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 17:05

    on my way,open the .sql file,in the end ,do del:

      /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
      /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
      /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
    

    and source it again,then work well for me!

提交回复
热议问题