Everything you want to know about Visual Studio ALM and Farming
Brian Harry is a Microsoft Technical Fellow working as the Product Unit Manager for Team Foundation Server. Learn more about Brian.
More videos »
Long ago I published a post on some of the queries I use to monitor data on our internal servers. Someone asked me to update it for TFS 2008 and I went back and tried them. Only a few needed tweaks. Here's an update on the queries.
Here they are...
use
-- Users with assigned work items:
select
-- # of work items:
-- Work Item versions:
-- Attached files:
-- # of queries:
-- # of version control users:
-- # of files(item type != 1)/folders(item type == 1):
-- Compresed file size:
-- Uncompressed file sizes:
-- Total # of checkins:
-- Pending changes:
-- Workspaces(type != 1)/Shelvesets(type == 1):
-- Local copies
sp_spaceused
-- Areas & Iterations:
-- Requests by user:
SELECT
FROM
GROUP
-- Requests by command:
And yes, I realize I still owe you the TFSServerManager tool that does all of this for you. And yes, I know it's inexusable that it's taken so long. I feel terrible about it and I could waste your time with all the reasons I haven't published it yet. I'm working on it today. I'm not making any promises about when - I've broken too many already.
Brian