Hello Team,
I need to find out the project size in Jira , I have contacted the Database team . They asked me to get the Table name. Can anyone help me how to find out the table name.
Thanks,
Sagar
What do you mean by "size"?
Thanks for the Reply!!
Actually database team asking for Table Name.
Can you help me how can i find the Table Name.
Thanks
Sagar
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Projects are smeared across dozens of tables, and they take up different amounts of space.
There's no answer to "we want a table name", it's useless to you without the context of the other tables that are part of a project.
We have to go back to what the actual question is. What do you mean by "size"?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You mean the number of issue per project?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Alessandro Lombardo ,
Thanks for Reply!!
In How many Factors Project Size can be Find in Jira ?
Thanks,
Sagar
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes i think that. The table are "project" and "jiraissue" and you can count the number of issue per project.
you can use a query like that:
select count(*), p.pname from jiraissue i, project p where i.project = p.id group by p.pname, i.project;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online 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.