欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

mysql错误处理之ERROR 1665 (HY000)

程序员文章站 2024-02-28 20:39:22
error 1665 (hy000) 【环境描述】 msyql5.6.14 【报错信息】 执行sql语句的时候报错: error 1665 (hy000)...

error 1665 (hy000)

【环境描述】

msyql5.6.14

【报错信息】

执行sql语句的时候报错:

error 1665 (hy000): cannot executestatement: impossible to write to binary log since binlog_format = statementand at least one table uses a storage engine limited to row-based logging.innodb is limited to row-logging when transaction isolation level is readcommitted or read uncommitted.

【报错原因】

innodb的事务隔离级别是read commited或者read uncommited模式时,binlog不可以使用statement模式。

【解决方法】

不重启mysql实例的解决方法:

set global binlog_format=mixed

重新建立的会话session中binlog format会变为mixed模式。