08 2022 档案

摘要:1.SHOW PROFILE 官网 参考文档链接:https://dev.mysql.com/doc/refman/8.0/en/show-profile.htmlSHOW PROFILE [type [, type] ... ] [FOR QUERY n] [LIMIT row_count [OF 阅读全文
posted @ 2022-08-29 15:59 Linux运维-Friend 阅读(202) 评论(0) 推荐(0) 编辑
摘要:#1.查看所有数据大小 #1.查询所有数据的大小mysql> use information_schema; mysql> select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables;+ +| data |+ 阅读全文
posted @ 2022-08-28 13:02 Linux运维-Friend 阅读(1953) 评论(0) 推荐(0) 编辑
摘要:#1.常规命令 #查看僵尸进程 ps -al | gawk '{print $2,$4}' | grep Z # 匹配电子邮件的地址 cat index.html | egrep -o "[A-Za-z0-9._]+@[A-Za-z0-9.]+\.[a-zA-Z]{2,4}" > ans.txt # 阅读全文
posted @ 2022-08-07 13:17 Linux运维-Friend 阅读(185) 评论(0) 推荐(0) 编辑