This document was uploaded by user and they confirmed that they have the permission to share
it. If you are author or own the copyright of this book, please report to us by using this DMCA
report form. Report DMCA
Overview
Download & View Backup Mysql Database as PDF for free.
Backing up MySQL Database *Make sure you have a "root" access to MySQL Export MySQL Database # mysqldump -u root -p dbname > dbname.sql
Import MySQL Database Access MySQL Database as a “root" # mysql -u root -p Create a new database mysql> create database mydb; mysql> exit Put backup into new database # mysql -u root -p mydb < dbname.sql