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: 

ICTime Teams / Price Lists

Nadim Iraki
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
December 7, 2016

Hey, 

how can I unassign DELETED JIRA projects from teams and price lists at ICTime adiminstration?

At the global teams page at the ICTime administration it only shows me thumbnails of deleted project and edit teams, which gives me errors. 

Support is appreciated. Thank you. 

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Smadoa
December 8, 2016

If you have not unassigned teams from projects prior deleting the project, you need to delete the assignment on database level.

Run the following select on your JIRA database:

select gtp.id gtp_id, gtp.global_team_id, p.id from AO_9B23C2_GLOBAL_TEAM_PROJECTS gtp LEFT JOIN project p on (p.id = gtp.PROJECT_ID) where p.id is null;
+--------+----------------+------+
| gtp_id | global_team_id | id |
+--------+----------------+------+
| 22 | 20028 | NULL |

2320034NULL

If you get any results, delete the assignment manually:

delete from AO_9B23C2_GLOBAL_TEAM_PROJECTS where id in (XX,yy,..);

Replace the xx, yy,.. with the gtp_id entries from the above query.