Is there a way to view all Stored Procedures in a database?

Yes, using the INFORMATION_SCHEMA.ROUTINES table: SELECT ROUTINE_TYPE,ROUTINE_NAME FROM INFORMATION_SCHEMA.ROUTINES WHERE ROUTINE_SCHEMA='dbname'; See also http://dev.mysql.com/doc/mysql/en/routines-table.html