1 | | By project: |
| 1 | Recent activity for non-class projects: |
| 2 | {{{ |
| 3 | mysql> |
| 4 | select year(last_activity) as yr, month(last_activity) as mo, |
| 5 | p.pid, eid |
| 6 | from experiment_stats s, projects p |
| 7 | where s.pid_idx = p.pid_idx and |
| 8 | !p.class and batch and year(last_activity) >= 2009 |
| 9 | order by yr, mo, p.pid, eid; |
| 10 | +------+------+--------------+---------------+ |
| 11 | | yr | mo | pid | eid | |
| 12 | +------+------+--------------+---------------+ |
| 13 | | 2009 | 4 | T1T2 | jdemo | |
| 14 | | 2009 | 5 | SecureIED | 32hostsmcast | |
| 15 | | 2010 | 1 | liveobjects2 | myexp1 | |
| 16 | | 2010 | 3 | DeterTest | jjh-batch | |
| 17 | | 2010 | 3 | DeterTest | jjh-batchtest | |
| 18 | | 2010 | 3 | liveobjects2 | myexp | |
| 19 | | 2010 | 3 | Panorama | bitfuzz10-1 | |
| 20 | | 2010 | 8 | SOS | appcomm | |
| 21 | +------+------+--------------+---------------+ |
| 22 | }}} |
| 23 | |
| 24 | All batch, by project: |