views:

4434

answers:

3

Dear all how can I see the list of the stored procedures or stored functions in mysql command line like show tables; or show databases; commands.

+7  A: 
SHOW PROCEDURE STATUS
SHOW FUNCTION STATUS
fredrik
+10  A: 
show procedure status

will show you the stored procedures.

show create procedure MY_PROC

will show you the definition of a procedure. And

help show

will show you all the available options for the show command.

unbeknown
+2  A: 

SHOW PROCEDURE STATUS;