0
I’m not getting a simple update on a table that contains a column TEXT. I put a simple Spanish text but sql returns me error saying that line is too big. However it is a very small sentence. Follow the error code:
Error SQL query: Edit
UPDATE ppplaw.sobre SET pol_gestao_esp = 'Para la continuidad de
la excelencia en la prestación de servicios jurídicos y de la
satisfacción de nuestros clientes, colocamos todos los esfuerzos'
WHERE sobre.id = 1
Messages from Mysql:
#1118 - Row size too large. The maximum row size for the used table type,
not counting BLOBs, is 8126. You have to change some columns to TEXT or BLOBs
About actually is the table, the field is pol_gestao_esp that I did not set size, is picking the default size for type TEXT.
– Felipe Paiva
Also try to see how many characters you have configured, it may be that the configured size is being exceeded.
– Ramon Ruan
Reading the error message, the problem is not the size of the field, but the total size of the record(Row), exceeding the maximum size for the table type(table) used.
– ramaral