手机
当前位置:查字典教程网 >编程开发 >mysql数据库 >Mysql Error Code : 1436 Thread stack overrun
Mysql Error Code : 1436 Thread stack overrun
摘要:ERRNO:256TEXT:SQLSTATE[HY000]:Generalerror:1436Threadstackoverrun:4904...

ERRNO: 256

TEXT: SQLSTATE[HY000]: General error: 1436 Thread stack overrun: 4904 bytes used of a 131072 byte stack, and 128000 bytes needed. Use 'mysqld -O thread_stack=#' to specify a bigger stack.

According to the MySQL manual “The default (192KB) is large enough for normal operation. If the thread stack size is too small, it limits the complexity of the SQL statements that the server can handle, the recursion depth of stored procedures, and other memory-consuming actions” .

To resolve this issue you need to change the default value of parameter 'thread_stack' in /etc/my.cnf in your MySQL configuration file.I use the XAMPP for php/mysql development.

Mysql Error Code : 1436 Thread stack overrun1

Once you set this value you need to restart MySQL as this value cannot be set dynamically.

you maybe also encounter with the message when you try to modify the my.cnf

"Cannot open file for writing: Permission denied"

We will try to use the 'chmod' instruction to change permission as usually. I seldom take the concrete permission into consideration, so I use always use the 'chmod 777'. but it resulted in another errors when I use the phpmyadmin, another tools included in XAMPP, after running 'chmod 777'.

Mysql Error Code : 1436 Thread stack overrun2

After googling it, I get this file (my.cnf) permissions has to be 600. I change its permission and it works well now.

【Mysql Error Code : 1436 Thread stack overrun】相关文章:

Mysql(MyISAM)的读写互斥锁问题的解决方法

修改SQL Server数据库相关字段的默认值

Mysql启动中 InnoDB: Error: log file ./ib_logfile0 is of different size 0 5242880 bytes 的问题

使用Rotate Master实现MySQL 多主复制的实现方法

mysql 10w级别的mysql数据插入

mysql数据库KEY分区用法

在Oracle实例间移动SQL调整工具集

mysql出现Error performing load command的解决方法

SQL Server SA权限总结经典技术

replace MYSQL字符替换函数sql语句分享(正则判断)

精品推荐
分类导航