工作项目的附件 [英] Attachments of work items

查看:61
本文介绍了工作项目的附件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有谁知道存储的位置以及我应该在哪里查找TFS 2017中WIT附件的文件?

Does anyone know where are stored and where should I look for files that were attachments to WITs in TFS 2017 ?

祝你好运,

Sanja

推荐答案

<嗨Sanja,

 所有附件信息都存储在集合数据库的WorkItemFiles表中。

 All the attachments information are stored in the WorkItemFiles table in the collection database.

如果您配置报告您的TFS,您可以使用下一个sql server查询语言来查找附件:

If you configure Reports for your TFS, you could use next sql server query language to find the attachments:

SELECT DISTINCT [ID] AS "Work Item ID"
      ,B.System_Title AS "Work Item Name"
	  ,B.System_WorkItemType As "Work Item Type"
	  ,[OriginalName] As "Attachments File Name"
  FROM [Tfs_DefaultCollection].[dbo].[WorkItemFiles] as A
  Left join [Tfs_Warehouse].[dbo].[DimWorkItem] As B 
  on A.ID = B.System_Id 

最好的问候


这篇关于工作项目的附件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆