码迷,mamicode.com
首页 > 数据库 > 详细

【mysql】报错解决方案The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement

时间:2015-10-30 09:17:43      阅读:4456      评论:0      收藏:0      [点我收藏+]

标签:

解决办法:

mysql> set global read_only=0;
(关掉新主库的只读属性)

 flush privileges;


 set global read_only=1;(读写属相)

 flush privileges;

Cannot execute statement: impossible to write to binary log since BINLOG_FORMAT = STATEMENT and at least one table uses a storage enginelimited to row-based logging. InnoDB is limited to row-logging when transaction isolation level is READ COMMITTED or READ UNCOMMITTED.

  mysql> SET SESSION binlog_format = ‘ROW‘;
  mysql> SET GLOBAL binlog_format = ‘ROW‘;

其他报错参考

http://www.cnblogs.com/xionghui/archive/2013/03/01/2939342.html

【mysql】报错解决方案The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement

标签:

原文地址:http://www.cnblogs.com/keepdancing/p/4922350.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!