The wise Axel Schwenke enlightened me with:
Quote:
Shouldn't mysqld accept the mysqldump files?
Nope. The --bootstrap mode is not meant to be used for normal work,
only to bootstrap (sic!) the MySQL server when the system database
(`mysql`) has not yet been created. |
Well, actually, I'm bootstrapping it since the server is not running
when I want to put the data in :-)
I know that the normal way would be either to copy the database file, or
use mysql to import the dumps.
The reason I'm doing it this way is this: the mysql server is not
running at the time of filling it with data.
The point remains though for the mysql db that you cannot dump and then
feed to mysqld --bootstrap, due to the create table being split over
multiple lines.
Anyway, for my case it's not really that important. I have it working
and it's just a one time action. I was just wondering whether this
should be possible.
Mark