How to search for projects which had no issues created/updated from last X DAYS?

Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.

Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*Except Fisheye and Crucible

Summary

How can we find a list of projects those are not updated or no issues created in that from last X DAYS?

Environment

8.13.0

Solution

We have two ways to get the list: 

  1. From the UI:

    1. Click on Settings → Projects

    2. Look out for "Last issue update"columnand sort the column (either ascending or Descending)

  2. Run the below SQL query:

1 2 3 4 5 6 SELECT DISTINCT i.PROJECT, MAX(i.UPDATED) as Last_Updated, p.pname, p.lead FROM jiraissue i INNER JOIN project p ON p.ID = i.PROJECT GROUP BY i.PROJECT, p.pname, p.lead having MAX(i.UPDATED) < '2020-05-01' ORDER BY MAX(i.UPDATED) desc, i.PROJECT, p.pname Note: Change the date according to your requirement

Updated on March 18, 2025

Still need help?

The Atlassian Community is here for you.