tags:

views:

22

answers:

2

How to take the backup of full database using mysql?

+1  A: 

You could use mysqldump. Have a look at the reference manual: 4.5.4. mysqldump — A Database Backup Program

[mysqldump] can be used to dump a database or a collection of databases for backup or transfer to another SQL server (not necessarily a MySQL server). The dump typically contains SQL statements to create the table, populate it, or both.

aioobe