I go through the jira 4.3.3 database (jira433) but i can't find the place where the project category is stored. Can help me to find the place category of a particular project is stored.
I am assuming you really mean categories verses components. There are three tables involved.
project, projectcategory and nodeassociation
nodeassociation.sink_node_entity='ProjectCategory'
nodeassociation.source_node_id = project.id
nodeassociation.sink_node_id=projectcategory.id
But when i run
select SINK_NODE_ID from nodeassociation where SOURCE_NODE_ID =11254;
query in sql it gives
+--------------+
| SINK_NODE_ID |
+--------------+
| 10032 |
| 10043 |
| 10000 |
| 10000 |
| 10002 |
| 10050 |
| 10074 |
| 10085 |
+--------------+
But for one project there should be one category but it gives this result why is that
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The nodeassociation table contains more than just project category relationships, so you got all the associations for that id number. You need to restrict more with the sink_node_entity or at least display that field as well or you have the wrong project number.
select SINK_NODE_ID from nodeassociation where SOURCE_NODE_ID =11254
and nodeassociation.sink_node_entity='ProjectCategory'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Spend the day sharpening your skills in Atlassian Cloud Organization Admin or Jira Administration, then take the exam onsite. Already ready? Take one - or more - of 12 different certification exams while you’re in Anaheim at Team' 25.
Learn more
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.