Micro Data Challenge, July 30, 2012

From GlueXWiki
Revision as of 12:17, 30 July 2012 by Marki (Talk | contribs) (Created page with "<pre> ifarm1102:marki:792> mysql -hhalldweb1 -ufarmer farming Reading table information for completion of table and column names You can turn off this feature to get a quicker st...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
ifarm1102:marki:792> mysql -hhalldweb1 -ufarmer farming
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 225647
Server version: 5.1.36-log MySQL Community Server (GPL)

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> select count(file), sum(submitted), sum(output), sum(jput_submitted), sum(silo) from bggen;
+-------------+----------------+-------------+---------------------+-----------+
| count(file) | sum(submitted) | sum(output) | sum(jput_submitted) | sum(silo) |
+-------------+----------------+-------------+---------------------+-----------+
|        1000 |           1000 |         436 |                 436 |       211 | 
+-------------+----------------+-------------+---------------------+-----------+
1 row in set (0.01 sec)

mysql> select count(file), sum(submitted), sum(output), sum(jput_submitted), sum(silo) from hd_root;
+-------------+----------------+-------------+---------------------+-----------+
| count(file) | sum(submitted) | sum(output) | sum(jput_submitted) | sum(silo) |
+-------------+----------------+-------------+---------------------+-----------+
|         196 |            196 |           8 |                   8 |         0 | 
+-------------+----------------+-------------+---------------------+-----------+
1 row in set (0.00 sec)

mysql> quit
Bye