
MYSQL
似剑非攻_墨眉无锋
linux,hp-ux,oracle 11g,mysql,shell,sql以及sql调优
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
mysql 字符集相关特性
字符集与校对集查看数据库默认字符集mysql> show variables like '%charact%';ERROR 2006 (HY000): MySQL server has gone awayNo connection. Trying to reconnect...Connection id: 45169Current database: information翻译 2016-04-06 10:21:35 · 380 阅读 · 0 评论 -
mysqldump Warning: Using a password on the command line interface can be insecure.
mysql mysqldump password insecure原创 2016-04-08 16:55:26 · 4550 阅读 · 1 评论 -
mysql ERROR 1045 (28000)
现象:[root@test-1-dns1 ~]# mysql -utest -ptest -hxxx -P3309Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id is 140Server version: 5.7.12-log Source distributionTyp原创 2016-07-21 16:18:34 · 622 阅读 · 0 评论 -
MySQL修改wait_timeout参数
1.修改参数配置文件vi /etc/my.cnf[mysqld]wait_timeout= 28800interactive_timeout= 28800#增加以上两列即可,因为官方文档要求修改此参数必须同时修改interactive_timeout 2.重启数据库Service mysql restart 3.查看数据库参数是否修改成功Show原创 2017-08-30 10:07:21 · 4689 阅读 · 0 评论