Show Create
am 17.04.2008 13:00:00 von guido.haukeHallo,
ich möchte mit einer MySql5 Datenbank mit SHOW CREATE TABLE ein
Tabellen-Backup erstellen.
Allerdings wird immer "collate latin1_german2_ci" für die Felder mit
reingeschrieben.
Soweit ich weiss funktioniert das CREATE statement nicht mit einer 3er
MySQL-Version.
Ich erhale also folgendes Ergebnis mit "SHOW CREATE TABLE artikel":
CREATE TABLE `artikel` (
`aId` int(10) unsigned NOT NULL auto_increment,
`aTitle` varchar(255) collate latin1_german2_ci NOT NULL default '',
PRIMARY KEY (`aId`)
) ENGINE=MyISAM AUTO_INCREMENT=27 DEFAULT CHARSET=latin1
COLLATE=latin1_german2_ci;
ISt es möglich dass "collate latin1_german2_ci" für das Feld aTitle nicht
angezeigt wird?
Kann mann da eine Option einstellen?
So in etwa in der Art wie bei "/usr/bin/mysqldump --compatible=mysql323"
Dort kann man ja auch Optionen mit anhängen...
Viele Grüße
Guido