try the following (assuming your database is in standard latin1 encoding):
mysqlimport -h host -u username -p --character-sets-dir=latin1 dbname c:\dbdump.sql
But there could be some problems with delimiters, fields enclosing caracters etc...
If this is not working as is, then try to include the following parameters in my.ini file and restart Mysql then:
mysqlimport -h host -u username -p --character-sets-dir=latin1 dbname c:\dbdump.sql
But there could be some problems with delimiters, fields enclosing caracters etc...
If this is not working as is, then try to include the following parameters in my.ini file and restart Mysql then:
Code:
[mysqlimport] fields-terminated-by=; default-character-set=latin1 fields-enclosed-by=" lines-terminated-by=\r\n
Comment