BACKUP AND RECOVERY IN MySQL USING MYSQLDUMP UTILITY (Article -18).
BACKUP AND RECOVERY IN MySQL USING MYSQLDUMP UTILITY. Please Refer the previous article. BACKUP AND RECOVERY IN MySQL (Article -17). Using mysqldump utility we can take the backup of only data(ignoring structure ) Check the databases list.
|
1 2 3 4 5 6 7 8 9 10 11 12 13 |
mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | ctg | | mysql | | performance_schema | | sys | | trg | | trg2 | +--------------------+ 7 rows in set (0.00 sec) |
To take the backup of only data… Read More






