I need to move my website with a mysql database on an old server with MySQL 3.23 to a new server with mysql 5.5.20
I have made a mysqldump with gzip and uploaded it to the new server. With gunzip file.sql.gz | mysql -uusername -ppasword dbname I tried to get it working. But I got an error. The error is
ERROR 1064 (42000) at line 4: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-----
CREATE TABLE lite_' at line 1
What should I do to solve this?