最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Mysql Error Code : 1436 Thread stack overrun

 更新時間:2011年07月02日 23:50:36   投稿:mdxy-dxy  
I meet with the error while calling stored procedures from the MySql in my Mac system server. It similar as the description below

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. 

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'.

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

bug info

報錯信息:
java.sql.SQLException: Thread stack overrun: 5456 bytes used of a 131072 byte stack, and 128000 bytes needed. Use 'mysqld --thread_stack=#' to specify a bigger stack.

官方相應(yīng)信息:

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

可以使用

show variables where `variable_name` = 'thread_stack';

查詢當(dāng)前數(shù)據(jù)庫的默認(rèn)線程棧的大小,一般情況下都能正常使用,但是當(dāng)查詢語句或者存儲過程復(fù)雜時會報Thread stack overrun錯誤,此時只要修改默認(rèn)配置就可以。

解決

windows: 修改mysql安裝目錄下的my-small.ini或者my.ini設(shè)置為256k,或者更大,然后重啟服務(wù)

[mysqld]
thread_stack = 256k
linux: 同樣要修改配置文件,但是?。。?,不是安裝目錄下的配置文件,是/etc/my.cnf,只有這個文件才能生效,然后重啟服務(wù)service mysql restart

[mysqld]
thread_stack = 256k

其實針對32位系統(tǒng),32G內(nèi)存,一般設(shè)置為512K即可,據(jù)國外網(wǎng)站看到的,如果是64位的系統(tǒng)可以適當(dāng)增加,其實夠用就好了,沒必須剛開始設(shè)置的就很大。

相關(guān)文章

  • Mysql 主從集群同步延遲的問題解決

    Mysql 主從集群同步延遲的問題解決

    本文主要介紹了Mysql 主從集群同步延遲的問題解決,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2025-04-04
  • MySQL數(shù)據(jù)庫varchar的限制規(guī)則說明

    MySQL數(shù)據(jù)庫varchar的限制規(guī)則說明

    本文我們主要介紹了MySQL數(shù)據(jù)庫中varchar的限制規(guī)則,并以一個實際的例子對限制規(guī)則進(jìn)行了說明,希望能夠?qū)δ兴鶐椭?/div> 2011-08-08
  • mysql5.5與mysq 5.6中禁用innodb引擎的方法

    mysql5.5與mysq 5.6中禁用innodb引擎的方法

    這篇文章主要介紹了mysql5.5中禁用innodb引擎的方法,需要的朋友可以參考下
    2014-04-04
  • mysql 5.7.18 Installer安裝下載圖文教程

    mysql 5.7.18 Installer安裝下載圖文教程

    這篇文章主要為大家詳細(xì)介紹了mysql 5.7.18 Installer安裝下載圖文教程,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2018-09-09
  • Mysql version can not be less than 4.1 出錯解決辦法

    Mysql version can not be less than 4.1 出錯解決辦法

    這篇文章主要介紹了Mysql version can not be less than 4.1 解決辦法的相關(guān)資料,需要的朋友可以參考下
    2016-10-10
  • RHEL6.5編譯安裝MySQL5.6.26教程

    RHEL6.5編譯安裝MySQL5.6.26教程

    這篇文章主要介紹了RHEL6.5編譯安裝MySQL5.6.26教程的相關(guān)資料,需要的朋友可以參考下
    2015-10-10
  • windows?64位下mysql8.0.25安裝配置教程(最詳細(xì)!)

    windows?64位下mysql8.0.25安裝配置教程(最詳細(xì)!)

    之前一直在用 5.7 版本,竟然一下子跳到 8.0了,下面這篇文章主要給大家介紹了關(guān)于在windows?64位下mysql8.0.25安裝配置教程,文章通過圖文介紹的非常詳細(xì),需要的朋友可以參考下
    2022-03-03
  • MySql command line client命令操作大全

    MySql command line client命令操作大全

    這篇文章主要介紹了MySql command line client命令操作大全,本文給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友參考下吧
    2024-01-01
  • mysql中tonumber函數(shù)使用及注意事項

    mysql中tonumber函數(shù)使用及注意事項

    在MySQL中,沒有直接的TO_NUMBER函數(shù),但可以通過CAST或CONVERT實現(xiàn)字符串到數(shù)字的轉(zhuǎn)換,轉(zhuǎn)換前需明確數(shù)據(jù)類型,了解轉(zhuǎn)換語法,并注意錯誤處理、空值處理、格式合規(guī)性和精度問題,本文介紹mysql中tonumber函數(shù)使用及注意事項,感興趣的朋友一起看看吧
    2025-02-02
  • MySQL關(guān)聯(lián)查詢優(yōu)化實現(xiàn)方法詳解

    MySQL關(guān)聯(lián)查詢優(yōu)化實現(xiàn)方法詳解

    在數(shù)據(jù)庫的設(shè)計中, 我們通常都是會有很多張表 , 通過表與表之間的關(guān)系建立我們想要的數(shù)據(jù)關(guān)系, 所以在多張表的前提下, 多表的關(guān)聯(lián)查詢就尤為重要,這篇文章主要介紹了MySQL關(guān)聯(lián)查詢優(yōu)化
    2022-11-11

最新評論

富锦市| 德化县| 齐齐哈尔市| 潮安县| 蓬莱市| 沁水县| 朝阳县| 渑池县| 肥东县| 玉门市| 西丰县| 新兴县| 塔城市| 敦化市| 泌阳县| 樟树市| 嘉鱼县| 灯塔市| 保靖县| 淄博市| 安泽县| 东海县| 南乐县| 奉节县| 保山市| 麻城市| 泊头市| 新邵县| 贵溪市| 乐平市| 大化| 沁源县| 孟连| 浑源县| 正定县| 樟树市| 马关县| 察隅县| 加查县| 亚东县| 加查县|