Hi,

On Thu, Apr 2, 2009 at 1:18 PM, Virgilio Quilario
<virgilio.quila...@gmail.com> wrote:
>> Hi,
>>
>> MySQL v4.1.22 on Linux 2.6.18-6-686
>>
>> I have a dump file generate with mysqldump created by a version 4.1.10 
>> server.
>>
>> I want to import the dump file into a different server. When I run
>>
>> mysqldump --database mydb --debug < mydumpfile.sql

If you are running that command to import then you are sure to have a problem.

Use:
mysql < dumpfile

http://dev.mysql.com/doc/refman/4.1/en/mysqldump.html

Or  in your case

mysql  mydb  < mydumpfile.sql

Cheers,

Ewen

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/mysql?unsub=arch...@jab.org

Reply via email to