案例从全球清单价值不敏感的喂养 [英] Case Insensitive feeding from Global List Value

查看:47
本文介绍了案例从全球清单价值不敏感的喂养的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

 

Hi Team,

感谢您的帮助

我创建了一个全局列表,将值提供给TFS字段。我不小心把它命名为"AbcDef"。而不是"Abcdef"。它不是重命名全局列表中的值,而是还原为

TFS版本:TFS2012 update4

谢谢和问候,

Mahesh



解决方案

嗨Mahesh,


谢谢你在这里发布。


全局列表值存储在SQL服务器上的表 [dbo]。[常量] 中,不区分大小写。


没有支持的方法来更改套管。


但是,如果您愿意取消服务器的可支持性并修改直接在数据库中,您可以在
[dbo]。[常量] 表中找到所需内容。只需更新字符串
DisplayPart 列。


如下所示:


< p style ="line-height:normal; margin-bottom:0pt"> UPDATE [Tfs_CollectionLC] [dbo] [常数]
< span style ="color:blue"> set
[String] =
'abcdef' [DisplayPart] = 'abcdef '
WHERE [ConstID] =
'xxx'



请参考此主题:  TFS全局列表项 - 不区分大小写?


最好的问候。


Hi Team,

Appreciate your help

I have created a global list that feeds the value to a TFS field. I had accidentally named it "AbcDef" instead of "Abcdef". Instead of renaming the value in the global list, it reverts back

TFS version: TFS2012 update4

Thanks and Regards,

Mahesh


解决方案

Hi Mahesh,

Thank you for posting here.

The Global list values are stored in the table [dbo].[Constants] on the SQL server, which is case-insensitive.

There's no supported way to change the casing.

However, if you are willing to void the supportability of your server and modify the database directly, you can find what you need in the [dbo].[Constants] table. Just update the String and DisplayPart columns.

Something like this:

UPDATE[Tfs_CollectionLC].[dbo].[Constants] set [String] = 'abcdef',[DisplayPart]='abcdef' WHERE [ConstID] = 'xxx'

Please reference this thread:  TFS global list items - case insensitive?

Best Regards.


这篇关于案例从全球清单价值不敏感的喂养的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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