Recursive Stored Procedure - Mysql Views : 854
Tagged in : Mysql
1 0
Send mail
In mysql by default you cannot execute recursive stored procedure , because the mysql server variable max_sp_recursion_depth is set to zero.So to execute stored procedure set the value of the variable max_sp_recursion_depth to greater than zero or upto the number of recursions needed for your stored procedure . The maximum value for max_sp_recursion_depth is 255 .
By Selva, On - 2009-11-30



    Login to add Comments .