Skip to content
Snippets Groups Projects
Commit 72fcd640 authored by Albert Vilella's avatar Albert Vilella
Browse files

added total size at the end of main table

parent 8fe0a088
No related branches found
No related tags found
No related merge requests found
......@@ -116,6 +116,12 @@ foreach my $db (sort {$total_size{$b} <=> $total_size{$a}} keys %total_size) {
printf("%8.1f\n", $total_size{$db} / 1024 / 1024);
}
my $total_bytes;
map {$total_bytes+=$_} values %total_size;
print "================================\n";
printf("TOTAL SPACE USED %7.1f\n", $total_bytes / 1024 / 1024);
print "================================\n";
my $count++;
print "==================\n";
print "Top tables by size\n";
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment