mysqldump is the utility to backup mysql databases. By default it generate backup for the complete database. In case only backup of stored procedures is required, this can be done as: mysqldump –routines –no-create-info –no-data –no-create-db –skip-opt database_name > /path/to/database_name.sql
↧