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
阅读全文
摘要:#1.查看所有数据大小 #1.查询所有数据的大小mysql> use information_schema; mysql> select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables;+ +| data |+
阅读全文
摘要:#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 #
阅读全文