Logo Informatizzati
Durante la migrazione di un database MySQL da un server ad un altro ho incontrato questo errore:
"#1064 - 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 'TYPE=MyISAM' at line 15"
Il problema è dovuto alle differenti versioni di MySQL tra i due server.
La soluzione è:
- Apri il file che stai importando
- Sostituisci "TYPE=MyISAM" con "ENGINE=MyISAM" ovunque
- Salva e importa

Commenti offerti da CComment