努力学习,努力分享,努力.....在努力..努力离开..
发布时间:2013-10-28 22:03:38
详解MySQL中的校对规则Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id is 7Server version: 5.6.14 MySQL Community Server (GPL)Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corpora.........【阅读全文】
发布时间:2013-10-28 17:07:04
mysql服务器本机上连接DB时经常会数据mysql.sock不存在例[root@DB mysql]# mysql -urootERROR 2002 (HY000): Can't connect to local MySQL server through socket '/usr/local/mysql/mysql.sock' (2)原因:如果指定localhost作为一个主机名,则mysqladmin默认使用UNIX套接字连接,而不是TCP/IP而这个套接字文件一般命名.........【阅读全文】
发布时间:2013-10-28 16:17:44
MySQL的字符集和校对规则有四种级别的默认设置:服务器级、数据库级、表级、字段级,四种设置方式如下服务器字符集和校对.在MySQL服务器启动时确定mysql.cnf[mysql]default-character-set=utf8启动的时候也可以指定mysqld --default-character-set=gbk在编译的时候指定cmake \-DDEFAULT_CHARSET=utf8 \-DEF.........【阅读全文】
发布时间:2013-10-27 20:15:28
atime是Linux系统下,读取文件时,OS需要将读操作发生的时间回写到磁盘上.在mysql中如果觉的记录访问的时间没有什么意义,那么可以禁止atime提高IO性能.通过mount命令来阻止atime信息具体做法如下修改/etc/fstablabel=/mysql /mysql ext3 noatime &.........【阅读全文】