From d5c3d83a3f563540b4b8949211cb9e3d242ed25f Mon Sep 17 00:00:00 2001 From: epriestley Date: Thu, 15 Mar 2012 14:16:40 -0700 Subject: [PATCH] Add a little SQL-info script that is sort of useful maybe? Summary: I'm not aware of an easy way to get this information through normal tools. I'm sure there's some fancy GUI client that has it but this seems worth keeping around. Test Plan: ran script, got helpful information about data sizes Reviewers: nh, btrahan Reviewed By: nh CC: aran, epriestley Differential Revision: https://secure.phabricator.com/D1916 --- scripts/sql/probe.php | 69 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100755 scripts/sql/probe.php diff --git a/scripts/sql/probe.php b/scripts/sql/probe.php new file mode 100755 index 0000000000..ac953e6dd1 --- /dev/null +++ b/scripts/sql/probe.php @@ -0,0 +1,69 @@ +#!/usr/bin/env php +establishConnection('r'); +$databases = queryfx_all($conn_r, 'SHOW DATABASES'); +foreach ($databases as $database) { + $name = head($database); + queryfx($conn_r, 'USE %C', $name); + $tables = queryfx_all( + $conn_r, + 'SHOW TABLE STATUS'); + $tables = ipull($tables, null, 'Name'); + $data[$name] = $tables; +} + +$totals = array_fill_keys(array_keys($data), 0); +$overall = 0; + +foreach ($data as $db => $tables) { + foreach ($tables as $table => $info) { + $table_size = $info['Data_length'] + $info['Index_length']; + + $data[$db][$table]['_totalSize'] = $table_size; + $totals[$db] += $table_size; + $overall += $table_size; + } +} + +echo "APPROXIMATE TABLE SIZES\n"; +asort($totals); +foreach ($totals as $db => $size) { + printf("%-32.32s %18s\n", $db, fmt($totals[$db], $overall)); + $data[$db] = isort($data[$db], '_totalSize'); + foreach ($data[$db] as $table => $info) { + printf(" %-28.28s %18s\n", $table, fmt($info['_totalSize'], $overall)); + } +} +printf("%-32.32s %18s\n", 'TOTAL', fmt($overall, $overall)); + +function fmt($n, $o) { + + return sprintf( + '%8.8s MB %5.5s%%', + number_format($n / (1024 * 1024), 1), + sprintf('%3.1f', 100 * ($n / $o))); +} + +