Hello the community,
I’m facing a problem with the migration of MariaDB database from the version 10.1 to the version 10.6.
To realize this task, I installed a complete new MariaDB 10.6 on a windows Server and ask for a dump of the original DB installation.
I try to upload this dump of the DB in a empty one on the MariaDB 10.6 side but I’m facing the following error:
ERROR 1118 (42000) at line 167577708: Row size too large. The maximum row size for the used table type, not counting BLOBs, is 65535. This includes storage overhead, check the manual. You have to change some columns to TEXT or BLOBs
I’ve read on several websites that it can be resolved by adding the two following properties:
- innodb_log_file_size that must be set with a greater value
- innodb_strict_mode= that must be set with 0
Considering this I added this on the my.ini file and restarted the MariaDB service:
innodb_log_file_size=10240M
innodb_strict_mode=0
But even with these parameters, it’s impossible for me to completely load the dump on the DB.
Could you help me to understand my issue please?
Thanks