KirbyWallace
Programmer
I need to create an AFTER UPDATE trigger. I've seen it suggested that the record being affected will be determined by joining the table being updated with the internal "INSERTED" table that is provided.
Very briefly: UPDATE tbl_a where tbl_a.PrimKey = INSERTED.PrimKey.
My question is, is there likely to be other "INSERTED data" in the INSERTED table that has nothing to do with what I am doing? Is it possible that the INSERTED table contains data currently being inserted by other processes?
Or, is INSERTED a "private" table containing only the data that **I** am updating?
Thanks!
Kirby