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 ,且當前數據庫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設置為ROW或者STATEMENT或者修改SQL。
一般情況下就是mysql配置問題,大家可以參考這篇文章:http://chabaoo.cn/article/84357.htm
- MySQL 將文件導入數據庫(load data Statement)
- MySQL?如何將查詢結果導出到文件(select?…?into?Statement)
- MySQL?Prepared?Statement?預處理的操作方法
- 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問題
相關文章
Mysql連接無效(invalid connection)問題及解決
這篇文章主要介紹了Mysql連接無效(invalid connection)問題及解決方案,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2023-02-02MySQL的從庫Seconds_Behind_Master延遲總結
這篇文章主要介紹了MySQL的從庫Seconds_Behind_Master延遲的相關資料,需要的朋友可以參考下2021-08-08