MySQL-Fehler #1064 beim Importieren

7games

New Member
Moin moin,

auf dem alten Server läuft MySQL Version 4.0.24_Debian-10sarge2-log auf dem neuen Version 5.5.24-cll beim Importieren bekomme ich folge Error Meldung.

Alle Anderen kann ich per Hand editieren, aber wo liegt jetzt der Fehler?

Fehler
SQL-Befehl:

CREATE TABLE `duels` (

`duelID` INT( 11 ) NOT NULL AUTO_INCREMENT ,
`duelChallanged` INT( 11 ) NOT NULL DEFAULT '0',
`duelStarted` INT( 11 ) NOT NULL DEFAULT '0',
`duelStat` TINYINT( 4 ) NOT NULL DEFAULT '1',
`uID1` INT( 11 ) NOT NULL DEFAULT '0',
`imgID1` INT( 11 ) NOT NULL DEFAULT '0',
`uID2` INT( 11 ) NOT NULL DEFAULT '0',
`accept2` TINYINT( 1 ) NOT NULL DEFAULT '0',
`imgID2` INT( 11 ) NOT NULL DEFAULT '0',
PRIMARY KEY ( `duelID` )
) TYPE = MYISAM ;

MySQL meldet:

#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 12
 
Back
Top