Open d2k2-git opened 9 years ago
in some cases you want to restore the dump to a different location: mysql newdatabasename < olddatabasename.sql
this would not work , cause there is the database name inside the dump:
CREATE DATABASE /!32312 IF NOT EXISTS/ mydb /!40100 DEFAULT CHARACTER SET latin1 /;
mydb
USE mydb;
it would be usefull to have an option to skip this two lines for the dump creation.
This is now available as of version 1.4.4: https://github.com/cbaerike/MySQL-Backup-Manager/releases
in some cases you want to restore the dump to a different location: mysql newdatabasename < olddatabasename.sql
this would not work , cause there is the database name inside the dump:
CREATE DATABASE /!32312 IF NOT EXISTS/
mydb
/!40100 DEFAULT CHARACTER SET latin1 /;USE
mydb
;it would be usefull to have an option to skip this two lines for the dump creation.