Re: migrating mysql database

2004-02-05 Thread vpendleton
Try using the actual MySQL dump command mysqldump --B --tables -u --opt -p -h | mysql -u -p -h >>>>>>>>>>>>>>>>>> Original Message <<<<<<<<<<<<<<<<<< On 2/5/04, 10:46:21 AM, UpFront

migrating mysql database

2004-02-05 Thread UpFront Technology
Hello, I am trying to copy the "mysql" database to a new MySQL server. I have tried the mysql dump method: dump data into a file > mysql2.sql move file to the new server execute: mysql -u root -p -e "source mysql2.sql" mysql -on the new server I con