工作項目連結記錄資料表
更新:2010 年 7 月
您可以使用 FactWorkItemLinkHistory 資料表和關聯的維度資料表,查詢 Bug、工作和其他類型之工作項目間的連結。 若要併入已連結之工作項目的詳細資料,請將 SourceWorkItemID 和 TargetWorkItemID 加入 Dim.System_ID。
FactWorkItemLinkHistory 與下列維度資料表相關聯:
DimTeamProject
DimPerson
DimWorkItem
注意事項 |
---|
此資料表包含已移除的連結。 尚未移除之連結的 RemovedDate 會設為 Jan 1, 9999。 移除連結時,移除日期會設為其移除日期和時間。 您可以使用 RemovedDate > GetDate() 篩選出已移除的連結。 |
您可以使用下列範例查詢,來尋找下列類型的資訊:
完成工作的總時數
原始估計工作
剩餘工作
在指定區域路徑下,Team 專案中每個使用者本文的本文總點數
如需範例查詢中所使用之 Coalesce 函式的詳細資訊,請參閱 Microsoft 網站上的下列網頁:COALESCE (Transact-SQL)。
注意事項 |
---|
這個查詢會假設使用者本文透過子連結連結至其他工作項目。 |
declare @TeamProjectNodeSK int
select @TeamProjectNodeSK = ProjectNodeSK from GetProjectNodeInfoFromReportFolder(N'/TfsReports/VSTSDF/ProcessDev10')
-- This table-value function returns the ProjectNodeSK: the Surrogate Key of a team project under a certain area path.
declare @TeamProjectCollectionGuid nvarchar(36)
select @TeamProjectCollectionGuid = pc.ProjectNodeGUID from DimTeamProject p inner join DimTeamProject pc on p.ParentNodeSK = pc.ProjectNodeSK where p.ProjectNodeSK = @TeamProjectNodeSK
-- This query finds the team project collection GUID by joining TeamProject.ParentNodeSK to TeamProject.ProjectNodeSK
select
wi.System_Title
,wi.System_Id
,coalesce(sum(cwi_child.Microsoft_VSTS_Scheduling_CompletedWork), 0) as Total_CompletedWork -- Finds the total number of hours of completed work.
,coalesce(sum(cwi_child.Microsoft_VSTS_Scheduling_OriginalEstimate), 0) as Total_OriginalEstimate --Finds the total number of hours of original estimate.
,coalesce(sum(cwi_child.Microsoft_VSTS_Scheduling_RemainingWork), 0) as Total_RemainingWork --Finds the total number of hours of remaining work.
,coalesce(sum(cwi_child.Microsoft_VSTS_Scheduling_StoryPoints), 0) as Total_StoryPoints --Finds the total story points.
from
DimWorkItem wi
cross apply
GetWorkItemsTree(@TeamProjectCollectionGuid, wi.System_Id, N'Child', DEFAULT) wit
left join
FactCurrentWorkItem cwi_child
on cwi_child.WorkItemSK = wit.ChildWorkItemSK
where
wi.TeamProjectSK = @TeamProjectNodeSK
and wi.System_WorkItemType = N'User Story'
and wi.System_RevisedDate = CONVERT(datetime, '9999', 126)--The revised date of the work item is equal to today.
and wi.System_State = N'Active'
group by wi.System_Id, wi.System_Title
order by wi.System_Id
請參閱
其他資源
使用 Visual Studio ALM 的關聯式倉儲資料庫建立報表
變更記錄
日期 |
記錄 |
原因 |
---|---|---|
2010 年 7 月 |
已連結之維度資料表的新增清單。 |
資訊加強。 |