If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
i already create my database and i create all the tables and done with all insert data....but i need to save the database as file in my USB or in any other storage but i don't know how?
mysqldump -u <username > -p<password> --all-databases > <filename> it will take all backup all databases
-- for particular database cars
mysqldump -u <username> -p<password> cars > <filename> it will take particular database backup