Query Trac for all tickets related to a user - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T11:00:35Z http://stackoverflow.com/feeds/question/916438 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/916438/query-trac-for-all-tickets-related-to-a-user 2 Query Trac for all tickets related to a user Quintin Par 2009-05-27T15:34:05Z 2009-05-29T10:00:48Z <p>How do I query for all trac tickets related to a user. i.e. all tickets for which the tickets were once assigned, assigned now, created , etc etc </p> http://stackoverflow.com/questions/916438/query-trac-for-all-tickets-related-to-a-user/925052#925052 2 Answer by laalto for Query Trac for all tickets related to a user laalto 2009-05-29T08:51:08Z 2009-05-29T10:00:48Z <p>Create custom queries to the <code>ticket_change</code> table. Some SQL required. For assigned once/now, look for rows where <code>field='owner'</code>, <code>newvalue</code> column contains the user name the ticket was assigned to. For created tickets, just query by <code>reporter</code> in the <code>ticket</code> table.</p> <p>Example:</p> <pre><code>SELECT p.value AS __color__, id AS ticket, summary, component, version, milestone, t.type AS type, priority, t.time AS created, changetime AS _changetime, description AS _description, reporter AS _reporter FROM ticket t, enum p, ticket_change c WHERE p.name = t.priority AND p.type = 'priority' AND c.field = 'owner' AND c.newvalue = '$USER' AND c.ticket = t.id ORDER BY p.value, milestone, t.type, t.time </code></pre> http://stackoverflow.com/questions/916438/query-trac-for-all-tickets-related-to-a-user/925137#925137 1 Answer by Spoike for Query Trac for all tickets related to a user Spoike 2009-05-29T09:20:15Z 2009-05-29T09:20:15Z <p>You can express this with a <a href="http://trac.edgewall.org/wiki/TracQuery" rel="nofollow">TraqQuery expression</a>. E.g. if you want the columns id, summary and status to show up and query all the tickets for the currently logged in user ($USER) then use the following query.</p> <pre><code>query:?col=id &amp; col=summary &amp; col=status &amp; owner=$USER </code></pre> <p>However this query assumes that the <code>owner</code> hasn't been the same during the lifetime of a ticket (since ownership can be changed).</p> <p>If you want a specific user then replace <code>$USER</code> with the actual username. Also if you're using the <a href="http://www.agile42.com/cms/pages/agilo/" rel="nofollow">Agilo plugin</a> you can easily create new queries on the fly via the web-UI. This is done by looking at a report and adding filters to the report.</p>