TFS Clear Notification Job Queue(TFS 清除通知作业队列)
问题描述
想知道如何清除通知作业队列.似乎在从 2013 年到 2017 年更新 TFS 后,一些电子邮件警报卡住了一段时间.是否可以清除所有通知队列?我是否只需要清除 tfs 配置数据库中的 tbl_JobQueue 以获取A4804DCF-4BB6-4109-B61C-E59C2E8A9FF7"电子邮件通知 JobID 还是还有其他内容?谢谢.
Was wondering how to clear notification job queue. Seems after updating TFS from 2013 to 2017 some of email alerts got stuck for a period of time. Is it possible to just clear all of the notification queue? Do I just need to clear tbl_JobQueue in tfs configuration DB for a 'A4804DCF-4BB6-4109-B61C-E59C2E8A9FF7' email notification JobID or is there something else? Thanks.
推荐答案
一般情况下,您需要清除 [Tfs_Configuration].[dbo].[tbl_JobQueue]
中的查询,以获取邮件通知 JobID 'A4804DCF-4BB6-4109-B61C-E59C2E8A9FF7
'
Generally, you need to clear the queries from [Tfs_Configuration].[dbo].[tbl_JobQueue]
for the email notification JobID 'A4804DCF-4BB6-4109-B61C-E59C2E8A9FF7
'
如果有其他投递,也可以根据JobId相应清除查询:
If there are other deliveries, you can also clear the query based on the JobId accordingly:
'A96D6177-BEEF-477A-A2EE-2C31433214D0
', -- 邮件、soap等发送
'
A96D6177-BEEF-477A-A2EE-2C31433214D0
', -- email, soap, etc. delivery
'A0C22F34-652E-4B9C-A06B-3F4AFE4BE458
' -- 服务挂钩交付
'A0C22F34-652E-4B9C-A06B-3F4AFE4BE458
' -- service hooks delivery
参见 解决 Visual Studio 团队服务和 TFS 通知/警报的问题
此外,如果需要,您还可以从集合 DB [Tfs_Collection].[dbo].[tbl_MailQueue]
中清除队列.
Besides, you can also clear the queues from collection DB [Tfs_Collection].[dbo].[tbl_MailQueue]
if needed.
这篇关于TFS 清除通知作业队列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:TFS 清除通知作业队列


- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 更改自动增量起始编号? 2021-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- SQL 临时表问题 2022-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01