How to take a MySQL database schema backup using the command line
The following command can be used to take a MySQL database schema backup on the command line :-
command : mysqldump -u dbusername -p passwd datbase_name --no-data=true >> output_file.sql
No comments