I exported a MySQL database from Webfaction, and tried to import it into MariaDB on OpalStack, using the following command: /home/timblack1/tools/wfmigrate/maria/import.sh
. That produces the following error:
ERROR 1118 (42000): 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 error and its solution are described at https://mariadb.com/kb/en/troubleshooting-row-size-too-large-errors-with-innodb/.
When I try that page's methods to determine which table has the problem via /home/timblack1/tools/wfmigrate/maria/rowsize.sh
, I get the following error:
ERROR 1227 (42000) at line 1: Access denied; you need (at least one of) the PROCESS privilege(s) for this operation
This prevents me from discovering which table needs to be fixed.
I tried running rowsize.sh
with the same database in a local MySQL instance, it outputs the following:
`No tables with rows size too large found.
0 tables found with row size too large.
./rowsize.sh done.`
What can I do to successfully import this database?
Tim