I am attempting to use the trigger. Here is what I would like to happen. There is a column in the table PROGMODE1, the column name is MULTI. When an INSERT or UPDATE occurs to this table I would like to update the data in the column MULTI. Here is what I have so far but it seems when I try to run it it ends up going in to an infinate loop.CREATE TRIGGER form_counts ON progmode1 AFTER UPDATE,DELETEAS raiserror ('Notify Systems Admin of change',16,10)BEGIN -- SET NOCOUNT ON added to prevent extra result sets from -- interfering with SELECT statements. SET NOCOUNT ON;UPDATE dbo.progmode1 set multi = (SELECT numberup FROM DJT_MT_INFO_TO_PRODTRACK_ALL_JOBS WHERE cast(DJT_MT_INFO_TO_PRODTRACK_ALL_JOBS.jobtask AS bigint) = dbo.progmode1.assigned_job)WHERE online = 0 -- Insert statements for trigger hereENDThe bold area above I had added and had remarked out all the rest to see if that would fix the infinate loop issue but it does not. So it has to be something in the way I am creating or calling the trigger. So could you please look at it and let me know where I went wrong. Thank you