How to dump mysql with all procedure and function using phpmyadmin -
i trying export mysql dump file checked option 'add create procedure / function' in export page using phpmyadmin neither function nor procedure dumping ... please suggest me how can dump procedure , function
mysqldump --routines --no-create-info --no-data --no-create-db --skip-opt <database> > outputfile.sql
in case want backup stored procedures , triggers , not mysql tables , data, might helpful above... hope helps...
Comments
Post a Comment