mysqldump 3a error 3a

Solutions on MaxInterview for mysqldump 3a error 3a by the best coders in the world

showing results for - "mysqldump 3a error 3a"
Omar
28 Aug 2016
1#MySQL dump:
2
3mysqldump will not run from mysql cli, you will have to run it from windows command prompt:
4
5mysqldump -u username -p database_name > output_file_name.sql;
6
7If you are getting error on running above command 'mysqldump is not recognized as an internal or external command' then navigate to < MySQL Installation Directory/bin/ > and then run the command.
Nichola
21 Jan 2021
1mysqldump -u root mig> file.sql