Row size too large#
Problem#
During an i-doit update, an error message like "Row size too large" appears:
Solution#
Make sure you already have a backup (this should exist before every update). Then change the ROW_FORMAT of the affected table and run the update again:
-
Log in to MySQL:
1mysql -uroot -p -
Select the affected database:
1USE idoit_data;With multiple tenants, you must repeat this step for each affected database.
-
Set the
ROW_FORMATof the affected table fromFIXEDtoDYNAMIC:1ALTER TABLE isys_cats_person_list ROW_FORMAT=DYNAMIC;

