Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to query TFS database to get the last 10 check-in details

The output should be something like

File name    |      Comment              |   Changed By     |     Date
----------------------------------------------------------------------------
Test.cs         Added new functionality       username           01/08/2010

I am aware that the above result set can be obtained using TFS SDK. But I want to know if there is a way to query the TFS database to fetch the above data.

Thanks

share|improve this question
How about this. Get the result set via the TFS SDK while you have Profiler running on the TFS server. See what SQL statements are generated. – Randy Minder Jan 8 '10 at 17:41

3 Answers

If I understand your question correctly, this will get you most of the way there in SQL:

SELECT TOP 10
V.ChildItem AS [File name],
CS.Comment,
I.DisplayName AS [Changed By],
CS.CreationDate AS [Date]
FROM tbl_Changeset CS
INNER JOIN tbl_Identity I ON I.IdentityID = CS.OwnerID
INNER JOIN tbl_Version V ON V.VersionFrom = CS.ChangesetID
ORDER BY CS.CreationDate DESC

There are some escaped characters in the file names that showed up while I was testing this on my TFS instance (like underscore characters become ">"). Other than that this should serve you well.

share|improve this answer
thanks saul. this works for me. Can you pls. let me know if the above needs to be modified to give the results for a PARTICULAR PROJECT how can that be done? – stackoverflowuser Jan 8 '10 at 18:35
i guess you changed the query. The new query does not give the intended results. – stackoverflowuser Jan 8 '10 at 18:39
I reverted back to the original query. Sorry for the confusion. As far as making this work for a PARTICULAR PROJECT I am not sure if this can be done. TFS Version Control does not track changesets distinctly to a team project by default. The only way I can think of to accomplish this would depend on users associating all of their changesets to specific work items under a given team project. – Saul Dolgin Jan 8 '10 at 19:07
As a workaround how about this query... SELECT top 10 C.ChangeSetId, V.FullPath, V.ParentPath, REPLACE(V.ChildItem,'\','') as [FileName], C.CreationDate, I.DisplayName, C.Comment FROM tbl_Version(nolock) V INNER JOIN tbl_File (nolock) F ON V.ItemId = F.ItemId INNER JOIN tbl_Changeset (nolock) C ON V.VersionTo = C.ChangeSetId INNER JOIN tbl_Identity (nolock) I ON C.CommitterId = I.IdentityId where v.ParentPath like '$\' + (select name from [TfsWorkItemTracking].[dbo].[treenodes] where parentid=0 and fdeleted=0 and id=524) + '\%' order by C.CreationDate desc – stackoverflowuser Jan 8 '10 at 19:13
Check the value of Version.ParentPath to determine the project. The project then is simply the top-level 'folder'. – Kenny Evitt May 20 '10 at 21:34
show 1 more comment
up vote 1 down vote accepted

As a workaround how about the below query.. But i think it is returning me the wrong comments.. not sure why.

SELECT top 10
C.ChangeSetId, 
V.FullPath, 
V.ParentPath, 
REPLACE(V.ChildItem,'\','') as [FileName], 
C.CreationDate, 
I.DisplayName,
C.Comment
FROM tbl_Version(nolock) V
INNER JOIN tbl_File (nolock) F ON V.ItemId = F.ItemId
INNER JOIN tbl_Changeset (nolock) C ON V.VersionTo = C.ChangeSetId
INNER JOIN tbl_Identity (nolock) I ON C.CommitterId = I.IdentityId
where v.ParentPath like '$\' + (select name from [TfsWorkItemTracking].[dbo].[treenodes] where parentid=0 and fdeleted=0 and id=524) + '\%'
order by C.CreationDate desc

Thanks to mark.crockett for posting the above query @ http://social.msdn.microsoft.com/Forums/en-US/tfsreporting/thread/32d2c27e-825b-43bb-b156-36048a3e70cb/

share|improve this answer

If you have access to the SQL server that hosts TFS database the db you have to look is TFSWarehouse, then you can look for the tables Work Item,tbl_Changeset,tbl_Identity,tbl_Version etc. from where you can pull some information.

Thnks.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.