Quote:
Originally posted by Trumpcard
mysql -f eq2 < account.sql
mysql -f eq2 < char.sql
|
Otherwise it will stop because the tables are already there.
Also you can dump it in 1 command,
mysqldump eq account character_ > accounts.sql
then
mysql -f eq2 < accounts.sql
Same thing as what trumpcard posted, just a little shorter :p