数据库
首页 > 数据库> > 阿里云数据库报错LOCK_WRITE_GROWTH

阿里云数据库报错LOCK_WRITE_GROWTH

作者:互联网

现象
所有数据无法写入, 写入被锁定, 报错"LOCK_WRITE_GROWTH "

### Cause: java.sql.SQLException: The MySQL server is running with the LOCK_WRITE_GROWTH option so it cannot execute this statement
; uncategorized SQLException; SQL state [HY000]; error code [1290]; The MySQL server is running with the LOCK_WRITE_GROWTH option so it cannot execute this statement; nested exception is java.sql.SQLException: The MySQL server is running with the LOCK_WRITE_GROWTH option so it cannot execute this statement

原因
1、阿里云的一个保护策略,空间剩余不足时,禁止数据写入,保障可读状态。

2、阿里云数据库未续费
查数据,删表没问题,更新和插入不行。

解决方案

1、
升级数据库空间.
删除一些没有用的数据.
用 flush privileges.

2、续费

标签:LOCK,WRITE,SQLException,GROWTH,cannot,报错,MySQL
来源: https://www.cnblogs.com/SparkMore/p/16170570.html