Hi,
I'm using the following command to backup all databases creation only:
mysqldump -u username --password=password --host=host --port=port --all-databases --no-data > D:\all_databases_creation.sql
and I'd like to exclude specific database from those all databases.
Is there any option like --ignore-table but to ignore database ? can I do something like that?
Any suggestions will be appreciated ...
I'm using the following command to backup all databases creation only:
mysqldump -u username --password=password --host=host --port=port --all-databases --no-data > D:\all_databases_creation.sql
and I'd like to exclude specific database from those all databases.
Is there any option like --ignore-table but to ignore database ? can I do something like that?
Any suggestions will be appreciated ...