Hello all!
I have a table [REQ] it has Projects, Iterations, Releases, and User Stories.
I have to come up with a way to report Project metrics. So I can get all the metrics I want from the User Story level (i believe). The issue is making it all appear like I want.
If i can just get the Project to show up as a row, Iterations to show up as a few rows, REleases to show up as rows, and User Stories to show up as rows then i'd be ok.
This is what I have so far (only Project and Iteration):
So the goal is to have each layer it's own row without having the "WHERE RQ_FATHER_ID..." - if i have 30 projects going on that all have 4 iterations that all have 5 releases with 5 user stories each then I want my solution to be scaleable.
So I need to some how Union Projects to Iterations to Releases to User Stories. Once I'm at the User Story level (3 layers deep) I can gather the data I need to use.
- Matt
"If I must boast, I will boast of the things that show my weakness"
- Windows 2003 Server, 98 SE, XP
- VB.NET, VSTS 2010, ASP.NET, EXCEL VBA, ACCESS, SQL 2008
I have a table [REQ] it has Projects, Iterations, Releases, and User Stories.
I have to come up with a way to report Project metrics. So I can get all the metrics I want from the User Story level (i believe). The issue is making it all appear like I want.
If i can just get the Project to show up as a row, Iterations to show up as a few rows, REleases to show up as rows, and User Stories to show up as rows then i'd be ok.
This is what I have so far (only Project and Iteration):
Code:
SELECT PRJ.RQ_REQ_NAME
FROM [REQ] PRJ
where RQ_REQ_ID = '2523'
GROUP BY PRJ.RQ_REQ_ID,PRJ.RQ_REQ_NAME
union
SELECT IT.RQ_REQ_NAME
FROM [REQ] IT
where RQ_FATHER_ID = '2523'
GROUP BY IT.RQ_REQ_ID, IT.RQ_REQ_NAME
So the goal is to have each layer it's own row without having the "WHERE RQ_FATHER_ID..." - if i have 30 projects going on that all have 4 iterations that all have 5 releases with 5 user stories each then I want my solution to be scaleable.
So I need to some how Union Projects to Iterations to Releases to User Stories. Once I'm at the User Story level (3 layers deep) I can gather the data I need to use.
- Matt
"If I must boast, I will boast of the things that show my weakness"
- Windows 2003 Server, 98 SE, XP
- VB.NET, VSTS 2010, ASP.NET, EXCEL VBA, ACCESS, SQL 2008