본문 바로가기
개발정보/Database

[Mysql] in current row format, BLOB prefix of 0 bytes is stored inline.

by MoelCano 2021. 7. 31.
반응형

MariaDb 작업 도중

 

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.

 

에러를 만남.

 

해결 방안으로

 

1. Text나 BLOB타입으로 변경

2. DB 설정 파일에서 my.cnf에서 

[mysqld]
innodb_strict_mode = 0

를 설정해준다.

반응형