How to list Stored Procedures and Functions in MySQL database

How to check if there are any STORED PROCEDURE in MySQL database?

SHOW PROCEDURE STATUS;

Similarly for MySQL database FUNCTIONS

SHOW FUNCTION STATUS;

But it displays a list of all PROCEDURE and all FUNCTIONS, you can chop down the list by appending

## display FUNCTIONS from 'test' db
SHOW FUNCTION STATUS WHERE db LIKE ='test';

Hope it helps somebody.
Enjoy!

Related posts:

  1. How to backup Stored Procedures in MySQL?
  2. Installing MySQL 5.1 on Ubuntu
  3. Using CPanel/WHM API to get detail list of all accounts
  4. Intall Apache, MySQL and PHP on Ubuntu 8.10
  5. Digsby Review

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>