Restoring Mysql database in Ubuntu
The Mysql database can be easily Restore by executing the SQL script inside the dump file. The Mysql database dump file has the option to create table and insert into table instructions for your database$ mysql -u YourUserName -p
mysql> create database restoreddb;
mysql> use restoredb;
mysql> .\mysql.backup;
The above code will Create the database and restore the Dumped Mysql database backup.
