The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

SQL Query for Project Shortcuts

Clark Everson
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
July 28, 2021

In Jira you can create project shortcuts. We are in the middle of a migration and we need to query the database to find all Jira projects that have a shortcut to another Jira project

 

When we last did this it was a lot of guessing and I can't find any queries for it in Community already.

What we are looking to get are a list of the projects (name and key) that contain a project shortcut and the link (URL etc) to the shortcut itself

 

Appreciate the help in advance!

2 answers

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

2 votes
Answer accepted
Hana Kučerová
Community Champion
July 28, 2021

Hi @Clark Everson ,

please try

select * FROM "AO_550953_SHORTCUT"

I believe this is the table, where all the project shortcuts are stored.

There's PROJECT_ID column, where project id is stored, so you will be able to determine the project.

0 votes
Nic Brough -Adaptavist-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
July 28, 2021

What do you mean by "project shortcuts"?

Like Clark Everson likes this
Clark Everson
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
July 29, 2021

Yeah I was referring to exactly what @Mohamed Benziane  linked to. Forgot to include the link