标签:mysql
mysqldump -h 10.23.95.166 -uroot -p${password} --all-databases --single-transaction --flush-logs --master-data=2 --force 出现slow_log:
SELECT /*!40001 SQL_NO_CACHE */ * FROM `coupon_code`
原因:
该语句得到表coupon_code的所有数据,在backup.sql中会生成相应的insert语句,恢复时执行这些数据的insert操作。其中sql_no_cache的作用是避免查询结果缓存(不是不在缓存中查询结果)。
本文出自 “linux学习” 博客,请务必保留此出处http://wjlking.blog.51cto.com/4431189/1880358
标签:mysql
原文地址:http://wjlking.blog.51cto.com/4431189/1880358