How to backup stored procedures in MySQL
问题 I use mysqldump with MySQL 5.0 and I back it up every day, but do not understand the method that only stored procedure backs up. How can I back it up? 回答1: I'm not sure whether you're asking to back up stored procedures as well as everything else, or just the stored procedures on their own... Stored procedured in dump with everything else: mysqldump -R <dbname> #or mysqldump --routines <dbname> Just the stored procedures: mysqldump -n -t -d -R <dbname> #or mysqldump --no-create-db --no-create