#file: get_innodb_db_size.sh #author: shitou #date: 09/18/2008 #aim: get mysql db table size, especially for Innodb table #use: first replace the db username and password, # #./get_innodb_db_size username db_name [[ $# == 0 ]] && { echo "need the db name and mysql username"; exit 1; } mysql -u $1 -p -e "show table status from $2\G" | \ awk '/(Data_length:|Name:)/{print $0}' | \ awk 'BEGIN{i=1; total=0; print "DB: '"$2"'"; print "-----------------------------------";}; {if(i%2==0){size=$2;printf "%-30s%d\n", table, size} else {table=$2};i++;total+=$2}; END{print "-----------------------------------"; split(i/2, num, "."); printf "TOTAL TABLE:%25d\n", num[1]; printf "TOTAL SIZE:%25d B\n", total}' #EOF
2009-10-30 11:58:19, 296 reviews
send to mailbox
__ InnoDB Buffer Pool __________________________________________________Usage 7.97M of 8.00M %Used: 99.61Read hit 100.00%Pages Free 2 %Total: 0.39 Data 499 97.46 %Drty: 0.00 Misc 11 2.15 Latched 0 0.00Reads 101.06M 8.5/s From file 373 0.0/s 0.00 Ahead Rnd 19 0.0/s Ahead Sql 13 0.0/sWrites 860.88k 0.1/sFlushes 254.62k 0.0/sWait Free 0 0/s__ InnoDB Lock _________________________________________________________Waits 424 0.0/sCurrent 0Time acquiring Total 254266 ms Average 599 ms Max 39559 ms__ InnoDB Data, Pages, Rows ____________________________________________Data Reads 502 0.0/s Writes 344.09k 0.0/s fsync 158.03k 0.0/s Pending Reads 0 Writes 0 fsync 0Pages Created 699 0.0/s Read 523 0.0/s Written 254.62k 0.0/sRows Deleted 4.59k 0.0/s Inserted 74.16k 0.0/s Read 94.67M 8.0/s Updated 40.61k 0.0/s
Usage 7.97M of 8.00M %Used: 99.61Read hit 100.00%
PagesFree 2 %Total: 0.39Data 499 97.46 %Drty: 0.00Misc 11 2.15Latched 0 0.00
Reads 101.06M 8.5/sFrom file 373 0.0/s 0.00Ahead Rnd 19 0.0/sAhead Sql 13 0.0/s
Writes 860.88k 0.1/sFlushes 254.62k 0.0/sWait Free 0 0/s
Waits 424 0.0/sCurrent 0Time acquiring Total 254266 ms Average 599 ms Max 39559 ms
Data Reads 502 0.0/s Writes 344.09k 0.0/s fsync 158.03k 0.0/sPending Reads 0 Writes 0 fsync 0
Pages Created 699 0.0/s Read 523 0.0/s Written 254.62k 0.0/s
RowsDeleted 4.59k 0.0/sInserted 74.16k 0.0/sRead 94.67M 8.0/sUpdated 40.61k 0.0/s
2008-10-11 15:19:40, 378 reviews
just DO NOT support IE