How to backup Stored Procedures in MySQL?
Type this on SSH / command line [sourcecode language="sql"]mysqldump -u username -p database_name --routines > /home/asim/database_backup_with_procedures.sql[/sourcecode] Type in the password when prompted. P.S. Replace username with actual mysql username and database_name with actual database name.