The mysqldump client utility performs logical backups, producing a set of SQL statements that can be executed to reproduce the original database object definitions and table data. It dumps one or more MySQL databases for backup or transfer to another server. The mysqldump command can also generate output in CSV, other delimited text, or XML format. Although it appears to be a little executable file, its scope is greater to accommodate a variety of use-cases.
mysqldump accepts various connection options, DDL Options, Format Options, Filtering Options, Performance Options, Transactional Options, etc.
This post will demonstrate how to use mysqldump to backup multiple databases at once.
Syntax:
mysqldump -h <HostName OR IP Address OR RDS End Point> -u <UserName> -p<Password>
dbname1, dbname2 > dbsDump.sql
Examples:
mysqldump -h 127.0.0.1 -u root -p –triggers –routines dbname1, dbName2, dbName3 > DBsBackup.sql
mysqldump -h 127.0.0.1 -u root -pMyPassword –triggers –routines dbname1, dbName2, dbName3 > DBsBackup.sql
mysqldump -h instance-live.uvxyzcynxmabbaz.eu-east-2.rds.amazonaws.com -u root -p –triggers –routines dbname > DBsBackup.sql
The above commands help in backing up the views, triggers and routines as well.
Happy learning!!