标签:blank 微软雅黑 justify target error
执行一个存储过程,出现如下错误:
请更正下列输入错误:
CDbCommand 无法执行 SQL 语句: SQLSTATE[HY000]: General error: 1456 Recursive limit 0 (as set by the max_sp_recursion_depth variable) was exceeded for routine sp_rebuild_booktype. The SQL statement executed was: call sp_rebuild_booktype (:parentid)
因为存储过程递归调用了,但是没有设置递归层次,所以导致出现这个错误。
在存储过程中增加如下代码:
SET @@max_sp_recursion_depth = 10; |
或者在MYSQL中执行如下命令设置全局变量:
SET global max_sp_recursion_depth = 10; |
或者在MY.INI中增加如下参数:
max_sp_recursion_depth = 10 |
标签:blank 微软雅黑 justify target error
原文地址:http://lancelot.blog.51cto.com/393579/1775925