• 检查mysql表碎片化脚本


     1 #!/bin/sh
     2 
     3 echo -n "MySQL username: " ; read username
     4 echo -n "MySQL password: " ; stty -echo ; read password ; stty echo ; echo
     5 
     6 mysql -u $username -p"$password" -NBe "SHOW DATABASES;" | grep -v 'lost+found' | while read database ; do
     7 mysql -u $username -p"$password" -NBe "SHOW TABLE STATUS;" $database | while read name engine version rowformat rows avgrowlength datalength maxdatalength indexlength datafree autoincrement createtime updatetime checktime collation checksum createoptions comment ; do
     8 if [ "$datafree" -gt 0 ] ; then
     9 fragmentation=$(($datafree * 100 / $datalength))
    10 echo "$database.$name is $fragmentation% fragmented."
    11 fi
    12 done
    13 done

    运行结果:

    jinyuanbao.mk_activity_shop is 263% fragmented.
    jinyuanbao.mk_coupon is 113% fragmented.
    jinyuanbao.mk_dispatch_coupon is 263% fragmented.
    jinyuanbao.mk_first_order is 88% fragmented.
    jinyuanbao.notice is 159% fragmented.
    jinyuanbao.open_oauth is 159% fragmented.
    jinyuanbao.order_platform_activity_map is 113% fragmented.
    jinyuanbao.payway is 4% fragmented.
    jinyuanbao.profile_info is 159% fragmented.
    jinyuanbao.push_info is 5% fragmented.
    jinyuanbao.push_tag is 21% fragmented.
    jinyuanbao.relation_notice is 25% fragmented.
    jinyuanbao.return_condition is 46% fragmented.
    jinyuanbao.sec_level_domain is 159% fragmented.
    jinyuanbao.sendsms is 2% fragmented.
    jinyuanbao.shop_category is 59% fragmented.
    jinyuanbao.shop_customer is 88% fragmented.
    jinyuanbao.shop_goods is 0% fragmented.
  • 相关阅读:
    解决“Dynamic Web Module 3.0 requires Java 1.6 or newer.”错误
    React中使用Ant Table组件
    Maven在Eclipse中的实用小技巧
    knockout+echarts实现图表展示
    深入分析Spring 与 Spring MVC容器
    二维码登录原理及生成与解析
    Maven中安装本地Jar包到仓库中或将本地jar包上传
    sorl6.0+jetty+mysql搭建solr服务
    git revert和reset区别
    java注意的一些细节问题
  • 原文地址:https://www.cnblogs.com/martinjinyu/p/4310676.html
Copyright © 2020-2023  润新知