I have a table with 600 fields in which datatype of all the 600 fields is 'TEXT'.
Now when we are trying to insert some data to this table it is showing the below error
Error Code: 1118. 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
My configuration file contains the following parameters:
innodb_strict_mode=OFF
innodb_log_file_size = 2G
innodb_log_buffer_size = 512M
innodb_file_format = Barracuda
max_allowed_packet = 1G
But still, couldn't insert the data. I there any way we can resolve this?