2013
全部博文(65)
发布时间:2013-07-29 15:58:48
主从同步,mysql,truncate,1062,Duplicate entry......【阅读全文】
发布时间:2013-07-01 14:34:45
在批量更新数据的时候,mysqld.err中多次出现了:130701 11:53:42 InnoDB: ERROR: the age of the last checkpoint is 2863227109,InnoDB: which exceeds the log group capacity 566225511.InnoDB: If you are using big BLOB or TEXT rows, you must set theInnoDB: combined size of log files at.........【阅读全文】
发布时间:2013-04-27 16:35:35
需求:有张业务表table,里面有很多字段,若里面的某一行记录更新了,则将这行记录重新加载到应用实现的索引缓存中。Table表的架构类似:idcolA……status1.........【阅读全文】
发布时间:2013-03-01 16:02:52
收到磁盘空间告警的信息,/tmp目录磁盘使用率99%。mysql 的 tmpdir 设置在/tmp目录,第一时间查看 ls -alth 并为发现大文件,也没有mysql临时表之类的文件。连接mysql,show processlist 并为发现异常查询 ……整个/tmp目录8GB,用查看df -h 发现/tmp Avail 值剩下100MB.........【阅读全文】
发布时间:2013-01-15 17:58:09
mysql max() 函数的需扫描where条件过滤后的所有行:在测试环境中重现:测试版本:Server version: 5.1.58-log MySQL Community Server (GPL)testtable表中的索引mysql> show index from testtable;+-----------+------------+------------+--------------+-------.........【阅读全文】
发布时间:2012-12-21 11:34:12
查看variable 中character相关参数的默认设置,一般都统一用一种编码。show global variables like 'character_set\_%' 或者 status 中查看+--------------------------+--------+| Variable_name | Value |+--------------------------+--------+| character_set_client | utf8 &nb......【阅读全文】