NixUser

NixUser.com | Unix User | Linux User | NixUser

ERROR 1118 (42000) at line 553: Row size too large (> 8126). Changing some columns to TEXT or BLOB may help. In current row format, BLOB prefix of 0 bytes is stored inline

Cannot restore from mysqldump file and errors out with message:

ERROR 1118 (42000) at line 553: Row size too large (> 8126). Changing some columns to TEXT or BLOB may help. In current row format, BLOB prefix of 0 bytes is stored inline

This is due to Innodb strict mode. Disable it by adding the following line in mysql configuration file (/etc/my.cnf) and restart the MySQL service.

innodb_strict_mode=OFF

Now you will be able to restore the dump file.