MySQL:Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEM
1:錯誤日志大量錯誤
150602 14:40:02 [Warning] Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. INSERT... SELECT... ON DUPLICATE KEY UPDATE is unsafe because the order in which rows are retrieved by the SELECT determines which (if any) rows are updated. This order cannot be predicted and may differ on master and the slave. Statement:INSERT INTO tab_name
2:原因:
查了下原因,tab_name 這個表上有2個唯一鍵。則使用INSERT … ON DUPLICATE KEY UPDATE ,且當前數(shù)據(jù)庫binlog_format是statement格式,這種sql語句就會報unsafe。
官方手冊:
INSERT … ON DUPLICATE KEY UPDATE statements on tables with multiple primary or unique keys.When executed against a table that contains more than one primary or unique key, this statement is considered unsafe, being sensitive to the order in which the storage engine checks the keys, which is not deterministic, and on which the choice of rows updated by the MySQL Server depends.
解決方法:
把binlog_format設(shè)置為ROW或者STATEMENT或者修改SQL。
一般情況下就是mysql配置問題,大家可以參考這篇文章:http://m.fzitv.net/article/84357.htm
- MySQL 將文件導入數(shù)據(jù)庫(load data Statement)
- MySQL?如何將查詢結(jié)果導出到文件(select?…?into?Statement)
- MySQL?Prepared?Statement?預(yù)處理的操作方法
- MySQL?binlog格式之Row和Statement語句詳解
- The MySQL server is running with the --read-only option so it cannot execute this statement
- 詳解JSP中的語句對象Statement操作MySQL的使用實例
- 解決mysql報錯You must reset your password using ALTER USER statement before executing this statement問題
相關(guān)文章
mysql慢查詢優(yōu)化之從理論和實踐說明limit的優(yōu)點
今天小編就為大家分享一篇關(guān)于mysql慢查詢優(yōu)化之從理論和實踐說明limit的優(yōu)點,小編覺得內(nèi)容挺不錯的,現(xiàn)在分享給大家,具有很好的參考價值,需要的朋友一起跟隨小編來看看吧2019-04-04
如何使用分區(qū)處理MySQL的億級數(shù)據(jù)優(yōu)化
mysql在查詢上千萬級數(shù)據(jù)的時候,通過索引可以解決大部分查詢優(yōu)化問題。但是在處理上億數(shù)據(jù)的時候,應(yīng)該怎么解決,本文就是用分區(qū)來優(yōu)化一下,感興趣的一起來了解一下2021-06-06
mysql中l(wèi)ike % %模糊查詢的實現(xiàn)
這篇文章主要介紹了mysql中l(wèi)ike % %模糊查詢的實現(xiàn),文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧2020-12-12

