I want to keep backup of my database and import it into different System? and how to make .dmp
or store file in MySql?
I want to keep backup of my database and import it into different System?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can dump a database with the
mysqldumpcommand-line utility ; using a command like this :Then, as the backup is just a bunch of SQL instruction, importing it to another database is as easy as using the
mysqlcommand-line utility :And, as a couple of references to the relevant manual pages :