PhiseySt
PhiseySt

Reputation: 158

TFS user profile

We have Microsoft Visual Studio Team Foundation Server. Version 15.117.26714.0. Our sql server have many databases.

5 of them have the prefix tfs_ This is tfs_warehouse, tfs_configuration, (collections… tfs_M1, tfs_M2, tfs_M3)

Tell me, please, where user profile information is stored (for example, email).

enter image description here

There is no information in the tables TFS_WAREHOUSE.DimPerson and TFS_CONFIGURATION.tbl_Identity tables.

Upvotes: 0

Views: 379

Answers (1)

PhiseySt
PhiseySt

Reputation: 158

For us, the answer is

database: tfs_configuration

SELECT Name, PropertyId FROM tbl_PropertyDefinition WHERE Name in ('ConfirmedNotificationAddress','CustomNotificationAddresses') /26,27/

SELECT Description, InternalKindId FROM tbl_PropertyArtifactKind WHERE Description='Identity' /1/

select * from tbl_PropertyValue pv where pv.InternalKindId=1 and PropertyId in (26,27)

Upvotes: 1

Related Questions