Recursive Stored Procedure - Mysql Views : 759
Tagged in : Mysql
Send mail vote down 1 vote down 0
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 .