Home > Database > Mysql Tutorial > body text

Mysql数据库优化系列(二)

WBOY
Release: 2016-06-07 15:27:51
Original
1259 people have browsed it

一、查看数据库性性能: showstatus; 挑选出几个比较重要的参数 二、AWK简单脚本编程实现数据库性能统计 1.新建Viscore.txt 2.写下如下数据: 3.每秒刷新一次,并写入一个文件进行分析 三、AWK语法简介 Awk 是一个简便的直译式的文本处理工具 . 擅长处理 --

一、查看数据库性性能:

      show status;

      挑选出几个比较重要的参数

      Mysql数据库优化系列(二)

二、AWK简单脚本编程实现数据库性能统计

     1.新建Vi score.txt

     2.写下如下数据:

    Mysql数据库优化系列(二)

    3.每秒刷新一次,并写入一个文件进行分析

   Mysql数据库优化系列(二)

三、AWK语法简介

  

Awk是一个简便的直译式的文本处理工具.擅长处理--多行多列的数据。

处理过程

While(还有下一行) {

1:读取下一行,并把下一行赋给$0,各列赋给$1,$2...$N变量

        2: 用指定的命令来处理该行

}

 

如何处理1行数据?

2部分,   pattern (条件)  + action(处理动作)

 

第1个简单awk脚本

awk  ‘{printf “%s\n” , $1}’ xx.txt  // xx.txt的每一行进行输出

2个简单awk脚本 统计mysql服务器信息

mysqladmin -uroot ext|awk 
'Queries/{q=$4}/Threads_connected/{c=$4}/Threads_running/{r=$4}END{printf("%d %d %d\n",q,c,r)}'


source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template