增加MySQL中允许的最大u包数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了增加MySQL中允许的最大u包数相关的知识,希望对你有一定的参考价值。

If you every get hit by ERROR 1153 (08S01): Got a packet bigger than 'max_allowed_packet' bytes, then this might help.
You also need to make sure that the user that you log in with has SUPER privileges on their account.
  1. #To access mysql console
  2. mysql -u username -p -h localhost
  3.  
  4. #See variable max_allowed_packet and then set it to 100Mb
  5. show variables like '%max_allowed_packet%';
  6. set global max_allowed_packet=1000000000;
  7.  
  8. #exit
  9. /x
  10.  
  11. #run import
  12. mysql -u username -p -h localhost database_name < sql_to_import.sql

以上是关于增加MySQL中允许的最大u包数的主要内容,如果未能解决你的问题,请参考以下文章

javascript 变量中允许的最大整数是多少? [复制]

如何将文本字段中允许的最大输入值限制为 10? [复制]

C 中允许的静态数组的最大大小是多少?

元素数超过 SQL 数据透视语句中允许的最大值

CSS 选择器中允许的注释语法

sklearn 功能列表中允许的数据类型?