We migrated from TFS2008 to TFS2010. In TFS2008, we used the query below to update our workitems in the SQL Server database for TFS, but in the new TFS2010 database, I don't know how to do it.
This is my query that worked in TFS2008
update dbo.WorkItemsLatest set [Created By] = @CreatedBy where ID = @id
update dbo.WorkItemsAre set [Created By] = @CreatedBy where ID = @id
What is the query performs the same operation in TFS2010?