Suppose I have 1000 projects in my jira instance. How can I find the list of all projects that are not active (any updation) from last one year?
Please suggest solution if we can use REST API for this?
Thanks in advance!
You can run below SQL on your Jira database. It'll give you list of projects which are not updated after a specific date and time. You might have to tweak the date and time part in the 'where' clause. I ran it on PostgreSQL.
select
pname,pkey,created as project_createtd,updated as project_updatetd
from
project
where updated <= '2019-10-01T02:15:00.102738Z'
Hi @Narendra Kumar ,
Under Administration > Projects there's a column where you can see the last time an issue was updated in the project.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Edwin Kyalangalilwa, is that an image from Cloud? Not sure it is and I do not have that field in my Projects page and I checked another instance as well w/o success. I wonder if this is Server specific?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You're right, i missed that this is a question related to cloud.
@Narendra Kumar Please disregard my above answer.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey, just to update this old thread with new information :-)
This is now available in CLOUD! See Screenshot from one of my cloud instances... Yup, you can now see "Last Issue Updated" and sort by that in the manner @edwin mentioned above!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Russell Zera , is this standard or premium? I don't see in my standard instance (yet).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
ohhhh nooooooo... Premium strikes again! sorry... I'm on Premium
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Today only! Share what you’re the most excited about for Team ‘25 or just dance out the beginning of a new quarter with us.
Comment the postOnline forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.