<stupidQuestion>Do your updates include updating the table that has the instead of trigger?</stupidQuestion>If you update a table with an instead of update trigger, but the trigger has no code, your table will not be updated.Be One with the OptimizerTGEDIT:example of what I mean:set nocount onuse pubsgocreate table junk (i int primary key, c varchar(15))gocreate trigger tr_junk_upd on junk instead of update asprint 'update someother table'/* --don't update junkupdate a set a.c = i.cfrom junk ajoin inserted i on i.i = a.i*/goinsert junk (i,c) values (1,'tg')goselect * from junkupdate junk set c = 'x-factor' where i = 1select * from junkgodrop table junk