上一页 1 2 3 4 5 6 7 ··· 44 下一页
摘要: 错误日志如下: 1.replace into 的作用是,当存在冲突时,会把旧的记录替换成新的记录,也就是说replace into 分了两个步骤:A.判断 和 B. 执行 A. 首先判断我们执行的记录是否存在(根据主键或者唯一索引) B. 针对不存在的记录,直接执行insert语句 针对已经存在的记 阅读全文
posted @ 2023-04-06 15:05 __Yoon 阅读(639) 评论(0) 推荐(0)
摘要: 详解转载: https://www.xmmup.com/mysql-shellgongjujieshao.html 下载: wget https://dev.mysql.com/get/Downloads/MySQL-Shell/mysql-shell-8.0.29-linux-glibc2.12- 阅读全文
posted @ 2023-03-29 11:31 __Yoon 阅读(406) 评论(0) 推荐(0)
摘要: 报错: FATAL: unable to connect to MySQL server on host '127.0.0.1', port 3377, aborting... FATAL: error 2059: Authentication plugin 'caching_sha2_passwo 阅读全文
posted @ 2023-02-13 11:32 __Yoon 阅读(703) 评论(0) 推荐(0)
摘要: 转载: MySQL 8.0 新特性 阅读全文
posted @ 2023-02-06 16:54 __Yoon 阅读(22) 评论(0) 推荐(0)
摘要: 转载: Clone Plugin 阅读全文
posted @ 2023-02-06 16:53 __Yoon 阅读(20) 评论(0) 推荐(0)
摘要: 转发: 修改Docker存储位置 阅读全文
posted @ 2022-12-21 14:38 __Yoon 阅读(122) 评论(0) 推荐(0)
摘要: 转发: https://mp.weixin.qq.com/s/1ysmoptSbZ0IEPIOfynlcQ 阅读全文
posted @ 2022-12-15 17:00 __Yoon 阅读(65) 评论(0) 推荐(0)
摘要: mpstat是Multiprocessor Statistics的缩写,是实时系统监控工具。mpstat 最大的特点是:可以查看多核cpu中每个计算核心的统计数据;而类似工具vmstat只能查看系统整体cpu情况。 说明:mpstat命令 指令主要用于多CPU环境下,它显示各个可用CPU的状态系你想 阅读全文
posted @ 2022-12-15 14:33 __Yoon 阅读(269) 评论(0) 推荐(0)
摘要: 限制CPU的方式有以下几种:1、taskset 2、cpulimit 一、taskset -p,--pid 对一个已存在的pid进行操作 -c,--cpu-list 限定进程到指定的cpu上,可以指定多个,以逗号分隔,也可指定范围:1,2,5,6-8。 示例:使用 taskset 将19041 绑定 阅读全文
posted @ 2022-12-14 19:14 __Yoon 阅读(852) 评论(0) 推荐(0)
摘要: MySQL Load Data 多种用法 1、--导出基础参数 (以为,逗号作为分隔符,以"双引号作为界定符) select * into outfile '/data/mysql/3306/tmp/employees.txt' character set utf8mb4 fields termin 阅读全文
posted @ 2022-12-07 15:56 __Yoon 阅读(474) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 44 下一页