Skip to content
Snippets Groups Projects
Commit 6372b339 authored by Carsten  Rose's avatar Carsten Rose
Browse files

Add hint use mysqldump with one row per record

parent ecea3427
No related branches found
No related tags found
3 merge requests!638Merge Develop to B16343,!637develop into F17086-Multiple-Forms-on-a-page,!626New version v23.10.1
Pipeline #10787 passed
......@@ -301,13 +301,21 @@ Row size too large
* Details: https://mariadb.com/kb/en/troubleshooting-row-size-too-large-errors-with-innodb/
* Typically too many columns per table on an InnoDB Table.
* First try is to check (and to change) ROW_FORMAT::
* First try is to check (and to change) ROW_FORMAT: ::
ALTER TABLE tab ROW_FORMAT=DYNAMIC;
* Bad workaround for creating a wide table::
SET SESSION innodb_strict_mode=OFF;
CREATE TABLE ...
SET SESSION innodb_strict_mode=OFF;
CREATE TABLE ...
* Best is to change as much columns as neccessary from ``varchar()`` to ``tinytext`` / ``text``
SQL Dump with one record per line
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Sometimes it's helpful to have SQL dumps with each record on a single line::
msyqldump --skip-opt <DB-Name>
* Best is to change as much columns as neccessary from ``varchar()`` to ``tinytext`` / ``text``
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment