It looks like there is a pattern to your updates and perhaps you could use just one update statement. For instance:Update StudDetails Set HomeGroup = Right(HomeGroup, 3)
If that is not the case, I would recommend creating a separate table with the old and new values and then using a single update statement. That way if you need to add values for your update, you don't have to touch your code.For example:Create Table UpdatePairs (OldVal varchar(50), NewVal varchar(50)Insert Into UpdatePairs Select 'bTGB01', 'B01'...Insert Into UpdatePairs Select 'bTGB70', 'B70'--In your SSIS Package:Update StudDetails Set HomeGroup = NewValFrom StudDetailsInner Join UpdatePairs On HomeGroup = OldVal