ich habe auf meinem alten Linux 7.2 dumps von den Datenbankengemacht.
Da ich einen neuen Server bestellt habe.
Nun folgendes Problem
Das dump wurde so erstellt:
Code: Select all
mysqldump -hlocalhost -uroot -p usr_web1_2 > /axtmp/usr_web1_2.sql
Code: Select all
mysql -hlocalhost -uroot -p usr_web1_2 < /home/usr_web1_2.sql
Zeile 4 So so.. nehen wir mal den EIntrag aus dem DUMP:ERROR 1064 at line 2802: 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 'default NULL
) TYPE=MyISAM' at line 4
Code: Select all
#
# Table structure for table 'PRIVAT'
#
DROP TABLE IF EXISTS PRIVAT;
CREATE TABLE PRIVAT (
ID decimal(10,0) default NULL,
Betreff varchar(255) default NULL,
Text longtext
) TYPE=MyISAM;
Gruß RoT