Hi,
As I know I can use the following command to backup all my databases:
I noticed that the above SQL file would not include CREATE DATABASE commands, and doesn't also support the MySQL users and their permissions for each database.
How can I backup so that the database names and each user assigned to each database on the server ?
As I know I can use the following command to backup all my databases:
Code:
mysqldump --all-databases > all_databases.sql
How can I backup so that the database names and each user assigned to each database on the server ?
Comment