I wonder if importing a script with mysql CLI is faster than use a Linux CLI, let me explain what I mean here:
This:
- mysql -uroot -ppass
then use this source dump_script.sql
is faster/slower of this:
- mysql -uroot -ppass < dump_script.sql
I'm importing a 9gb db and I'm trying to avoid mistake :)
Also what about http://www.percona.com/ toolkit ? there is any valid tool to fast import a db ?