Mysql backup and restore
This tutorial explains the how to backup and restore the MySQL Database. Databases are used to store large amount of precious data and it becomes very important to Backup your data. In case case of some hardware or software failures backup data can be used to restore the Database. Backing Up MySQL Database MySQL database backup can be accomplished in two ways: a) Copying the raw mysql database files & b) Exporting tables to text files Copying the MySQL database files MySQL uses the same table format on different platforms, so it's possible to copy MySQL table and index files from one platform and use them on another without any difficulties (assuming, of course, that you're using the same version of MySQL on both platforms). Exporting tables to text files The MySQLDump is handy utility that can be used to quickly backup th...