Month: September 2014

  • Check MySQL database size

    This is an example on how to check mysql database size of cacti database. mysql> show databases; +——————–+ | Database           | +——————–+ | information_schema | | cacti              | | mysql              | | test               | +——————–+ 6 rows in set (0.00 sec) The the command below. mysql> SELECT table_schema cacti, sum( data_length + index_length ) /…