mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 12:37:14 +01:00
1 line
759 B
Plaintext
1 line
759 B
Plaintext
Das liegt an den Datenbank Einstellungen. Es müssen einige Einstellungen geändert werden:<br /><span class="wiki-text">Folgendes in my.cnf File ändern.</span> <span class="wiki-text">[mysqld]innodb_file_per_table=1 innodb_file_format = Barracuda innodb_log_file_size = 256M </span> <span class="wiki-text">Danach in der Datenbank folgendes eingeben:<br />ALTER TABLE firmendaten<br />ENGINE=InnoDB<br />ROW_FORMAT=COMPRESSED<br />KEY_BLOCK_SIZE=8; </span> <span class="wiki-text">Mögliche Fehlermeldung in SQL um es zu erkennen:<br />Row size too large (> 8126). Changing some columns to TEXT or BLOB or using ROW_FORMAT=DYNAMIC or ROW_FORMAT=COMPRESSED may help. In current row format, BLOB prefix of 768 bytes is stored inline.</span> |