igoodful
igoodful
全部文章
A-数据库之M...
A-数据库之MongoDB(64)
A-数据库之TiDB(17)
B-语言之Go(63)
B-语言之python(18)
C-CentOS是服务器主流系统(8)
C-MacOS是常用开发的系统(8)
C-windows是常用开发的系统(11)
C-系统之linux(127)
C-系统之ubuntu(5)
java之基础(107)
java之多线程(21)
matlab(11)
word(2)
前端(2)
基础之操作系统(4)
基础之算法(47)
基础之网络(24)
工作之需求(11)
工作之项目(3)
数据库之Redis(1)
数据库之设计(6)
未归档(29)
生活之人事(16)
生活之常识(20)
生活之设计(4)
电影与电视剧(1)
监控之Consul(4)
监控之Zabbix(1)
稳定资源(2)
软件之使用(111)
软件之安装(18)
归档
标签
去牛客网
登录
/
注册
igoodful的博客
全部文章
/ A-数据库之MySQL
(共296篇)
reading communication packets
<p> </p> <div> 在使用mysql5.7的时候,发现了不少在mysql5.6上不曾见过的日志,级别为note, 最常见的note日志以下三种,下面我们来逐个解释。 </div> <div> <st...
2020-08-27
0
493
check table
> check table endpoint; +------------------------+-------+----------+----------+ | Table | Op | Msg_type | Msg_tex...
2020-08-27
0
196
optimize table
> optimize table endpoint \G; *************************** 1. row *************************** Table: falcon_global.endpoint Op: op...
2020-08-27
0
319
checksum table
> Checksum table endpoint; +------------------------+------------+ | Table | Checksum | +------------------------+...
2020-08-27
0
170
analyze table
# desc endpoint; # show create table endpoint \G; # show index from endpoint \G; # show table status like 'endpoint'\G; # optimize table...
2020-08-27
0
204
binlog2sql
* 已测试环境 * Python 2.7, 3.4+ * MySQL 5.6, 5.7 my.cnf配置: log_bin = /var/log/mysql/mysql-bin.log max_...
2020-08-26
0
216
lower_case_table_names 线上默认为0
#################################### 1、linux下mysql安装完后是默认:区分表名的大小写,不区分列名的大小写; 2、用root帐号登录后,在/etc/my.cnf 中的[mysqld]后添加添加lower_case_table_names=1...
2020-08-25
0
283
insert into,insert into select,replace into,replace into select,insert ignore into,on duplicate key update
1、replace into REPLACE的运行与INSERT很相似。只有一点例外:假如表中的一个旧记录与一个用于PRIMARY KEY或一个UNIQUE索引的新记录具有相同的值,则在新记录被插入之前,旧记录被删除。 注意,除非表有一个PRIMARY KEY或UNIQUE索...
2020-08-19
0
233
mysql使用指南
# 创建索引:不要超过767byte的联合索引 CREATE TABLE `ga_property_dict_item_info` ( `id` bigint(20) unsigned NOT NULL AUTO_INC...
2020-08-19
0
217
mysql性能最大优化
################## # 如果系统总内存为128G,如果设置为100G以上,则容易出现内存溢出,out of memory,导致mysqld被系统重启,日志在/var/log/message中;90G最佳,设置为70到80G,则更安全 innodb_buffer_po...
2020-08-07
0
261
首页
上一页
3
4
5
6
7
8
9
10
11
12
下一页
末页