Answers for "how to export only procedures mysql"

SQL
0

how to export only procedures mysql

# specific database
mysqldump -h the_host -u the_user -p -n -d -t --routines --triggers the_database_name > the_routines.sql
# all databases
mysqldump -h the_host -u the_user -p -n -d -t --routines --triggers --all-databases > the_routines.sql
Posted by: Guest on March-16-2021

Code answers related to "how to export only procedures mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language