Difference between revisions of "Bugzilla Analysis"

From CDOT Wiki
Jump to: navigation, search
Line 14: Line 14:
 
   </tr>
 
   </tr>
 
   <tr>
 
   <tr>
     <td>How many bugs are there?</td>
+
     <th>How many bugs are there?</th>
 
     <td>Select count(bug_id) from bugs;</td>
 
     <td>Select count(bug_id) from bugs;</td>
 
<td>425,992</td>
 
<td>425,992</td>
 
   </tr>
 
   </tr>
 
<tr>
 
<tr>
<td>How many bugs per year?</td>
+
<th>How many bugs per year?</th>
 
</tr>
 
</tr>
 
<tr>
 
<tr>
Line 96: Line 96:
 
<td>21,997</td>
 
<td>21,997</td>
 
</tr>
 
</tr>
 +
<tr>
 +
<th>How many bugs for just Firefox (vs. Thunderbird, Calendar, and other products)</th>
 +
</tr>
 +
<tr>
 +
<td>Core(ID=1)</td>
 +
<td>select count(*) from bugs where product_id=1;</td>
 +
<td>176,713</td>
 
</table>
 
</table>

Revision as of 00:22, 26 June 2008

Students in BTR490 are working on analyzing historical Bugzilla data for Mozilla. This pages documents some of their findings and ideas.


Bugzilla Database Questions

By:Timothy Kwan, Rajiv Gagwani, Jasdeep Singh Goraya


Questions Query Result
How many bugs are there? Select count(bug_id) from bugs; 425,992
How many bugs per year?
1994 Select count(distinct bug_id) from bugs where creation_ts like '1994%'; 2
1995 Select count(distinct bug_id) from bugs where creation_ts like '1995%'; 1
1996 Select count(distinct bug_id) from bugs where creation_ts like '1996%'; 5
1997 Select count(distinct bug_id) from bugs where creation_ts like '1997%'; 36
1998 Select count(distinct bug_id) from bugs where creation_ts like '1998%'; 2020
1999 Select count(distinct bug_id) from bugs where creation_ts like '1999%'; 20,411
2000 Select count(distinct bug_id) from bugs where creation_ts like '2000%'; 40298
2001 Select count(distinct bug_id) from bugs where creation_ts like '2001%'; 53,468
2002 Select count(distinct bug_id) from bugs where creation_ts like '2002%'; 69,701
2003 Select count(distinct bug_id) from bugs where creation_ts like '2003%'; 42,371
2004 Select count(distinct bug_id) from bugs where creation_ts like '2004%'; 46,739
2005 Select count(distinct bug_id) from bugs where creation_ts like '2005%'; 45,173
2006 Select count(distinct bug_id) from bugs where creation_ts like '2006%'; 41,898
2007 Select count(distinct bug_id) from bugs where creation_ts like '2007%'; 41,872
2008 Select count(distinct bug_id) from bugs where creation_ts like '2008%'; 21,997
How many bugs for just Firefox (vs. Thunderbird, Calendar, and other products)
Core(ID=1) select count(*) from bugs where product_id=1; 176,713