File: sample_table_stats.php

package info (click to toggle)
boinc 5.4.11-4%2Betch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 21,440 kB
  • ctags: 16,986
  • sloc: cpp: 70,682; ansic: 45,747; php: 35,513; xml: 10,487; sh: 9,324; python: 4,291; makefile: 1,958; asm: 1,258; perl: 914; sql: 395; csh: 126; pascal: 124
file content (48 lines) | stat: -rw-r--r-- 1,560 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php

function showTableStatus($db) {
    $size = 0;
    $out = "";
    start_table();
    row1($db, 15);
    row_array(array("Name", "Engine", "Version", "Row Format", "Rows", "Avg Row Length (KB)", "Data Length (MB)", "Max Data Length (MB)", "Index Length (MB)", "Data free (MB)", "Create Time", "Update Time", "Check Time", "Create Options", "Comment"));
    mysql_select_db($db);
    $result = mysql_query("show table status");
    while($row = mysql_fetch_array($result)) {
        $size += ($row["Data_length"] + $row["Index_length"]);
        $engine = $row["Engine"];
        if (!$engine) $engine = $row["Type"];
        row_array(array(
            $row["Name"],
            $engine,
            $row["Version"] ,
            $row["Row_format"] ,
            $row["Rows"] ,
            round($row["Avg_row_length"]/1024,2) ,
            round($row["Data_length"]/(1024*1024),2) ,
            round($row["Max_data_length"]/(1024*1024),2) ,
            round($row["Index_length"]/(1024*1024),2) ,
            round($row["Data_free"]/(1024*1024),2) ,
            $row["Create_time"] ,
            $row["Update_time"] ,
            $row["Check_time"] ,
            $row["Create_options"] ,
            $row["Comment"]
        ));
    }
    $size = round(($size/1024)/1024, 1);
    row2("Total Table Sizes (MB)", $size);
    end_table();
    echo "<BR><BR>";
}

require_once("../inc/db.inc");
db_init();
page_head("MySQL Table Stats");

// add the databases you want to keep track of here
//
showTableStatus("boinc_alpha");
showTableStatus("cplan");
?>