工作項目記錄資料表
您可以使用 FactWorkItemHistory 和相關聯的維度資料表,來查詢 Bug、工作及其他工作項目類型的歷程資料,如下圖所示。 歷程資料提供隨時間改變之工作項目狀態或工作項目欄位值的相關資訊。 進度和待執行工作圖表即為從工作項目記錄資料表建置的報表範例。 其資料是使用補償記錄來儲存。
如需 SQL Server Analysis Services Cube 中,與這些資料表相關聯的維度和量值詳細資訊,請參閱使用工作項目透視圖分析和報告工作項目與測試案例資料。
FactWorkItemHistory 與下列維度資料表相關聯:
DimArea
DimIteration
DimPerson
DimTeamProject
DimWorkItem
您可以使用下列範例查詢,來尋找特定使用者劇本從 2009 年 9 月 21 日到 2009年 9 月 30 日間的歷程工作負載趨勢。 這個查詢會針對 Team 專案中的每個使用者劇本,傳回總完成工時、原始估計工時、剩餘工時,以及這段期間每天之總本文點數的相關資訊。
注意事項 |
---|
這個查詢假設使用者劇本透過子連結連結至其他工作項目。 |
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
d.DateSK
,wi.System_Title
,wi.System_Id
,coalesce(sum(wih_child.Microsoft_VSTS_Scheduling_CompletedWork), 0) as Total_CompletedWork, -- Finds the total number of hours of completed work.
coalesce(sum(wih_child.Microsoft_VSTS_Scheduling_OriginalEstimate), 0) as Total_OriginalEstimate --Finds the total number of hours of original estimate.
,coalesce(sum(wih_child.Microsoft_VSTS_Scheduling_RemainingWork), 0) as Total_RemainingWork--Finds the total number of hours of remaining work.
,coalesce(sum(wih_child.Microsoft_VSTS_Scheduling_StoryPoints), 0) as Total_StoryPoints --Finds the total story points.
from
DimDate d
cross apply
DimWorkItem wi
cross apply
GetWorkItemsTree(@TeamProjectCollectionGuid, wi.System_Id,
N'Child', d.DateSK) wit
left join
FactWorkItemHistory wih_child
on wih_child.WorkItemSK = wit.ChildWorkItemSK
where
d.DateSK >= N'2009-09-21 00:00:00.000'
and d.DateSK <= N'2009-9-30 00:00:00.000'
and wi.TeamProjectSK = @TeamProjectNodeSK
and wi.System_WorkItemType = N'User Story'
and wi.System_ChangedDate <= d.DateSK
and wi.System_RevisedDate > d.DateSK
and wi.System_State = N'Active'
and (wih_child.RecordCount != -1 or wih_child.RecordCount is null)
group by d.DateSK, wi.System_Id, wi.System_Title
其他資源
如需詳細資訊,請參閱 Microsoft 網站上的下列頁面:COALESCE (Transact-SQL)。
如需補償記錄的詳細資訊,請參閱 Microsoft 網站上的下列頁面:NEricson 的部落格。