Mysql-error 1406

Source: Internet
Author: User

1.1.1 phenomena

Executes a stored procedure with the following error:

Please correct the following input error :

Cdbcommand cannot execute SQL Statement : 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 (:p arentid)

1.1.2 cause

This error occurs because the stored procedure is recursively called, but no recursive hierarchy is set.

1.1.3 Solve

Add the following code to the stored procedure:

set @ @max_sp_recursion_depth = ten;

or in MYSQL set the global variable by executing the following command:

set global max_sp_recursion_depth = ten;

or in MY. INI , add the following parameters:

Max_sp_recursion_depth = 10

Mysql-error 1406

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.