搁置集如何存储在 TfsVersionControl 数据库中?

发布于 2024-09-17 11:37:31 字数 76 浏览 2 评论 0原文

我需要访问 TFS 和 TF Sidekicks 无法访问的搁置集,并且我正在尝试弄清楚数据如何存储在数据库中,以便可以更改搁置集所有者。

I need to get access to a shelveset that TFS and TF Sidekicks can't access and I'm trying to figure out how the data is stored in the database so I can change the shelveset owner.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

贵在坚持 2024-09-24 11:37:31

好的,我给你找到了一些信息。搁置集作为工作区存储在 tbl_Workspace 中,类型 = 1。

以下 SQL 将显示所有搁置集:

use TfsVersionControl;
select  * from tbl_workspace where type = 1

找到搁置集后,您可能需要尝试使用 TFS Power Tools 取消搁置。

电动工具链接:

http: //www.microsoft.com/downloads/details.aspx?FamilyID=fbd14eea-781f-45a1-8c46-9f6ba2f68bf0&DisplayLang=en

Ok, I found some information for you. Shelvesets are stored as workspaces in tbl_Workspace with the type = 1.

The following SQL will show you all of your shelvesets:

use TfsVersionControl;
select  * from tbl_workspace where type = 1

Once you find the shelveset, you may want to try the TFS Power Tools to do the unshelve.

Power tools link:

http://www.microsoft.com/downloads/details.aspx?FamilyID=fbd14eea-781f-45a1-8c46-9f6ba2f68bf0&DisplayLang=en

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文