Viewing 3 posts - 1 through 3 (of 3 total)
Sergiy you have peeked my interest. I am sure I am walking into something here, but let me do it any way.
If I do not update a table column by...
October 24, 2007 at 8:05 am
#744975
I have figured out the issue. I changed the trigger.
CREATE TRIGGER trg_#1 ON dbo.table1
FOR UPDATE
AS
IF UPDATE( dtmDateApproved)
BEGIN
INSERT INTO tbl_table2(table1ID)
SELECT DISTINCT table1ID
...
October 23, 2007 at 10:12 am
#744614
I did not think about that. I ran sp_helptrigger on my table. It returned only 2 triggers.
trg_table1_RunNightQAdbo11110
trg_#1dbo10010
the trg_table1_RunNightQA trigger is also firing twice. I looked and basically it is...
October 23, 2007 at 9:36 am
#744602