0
How can I execute a Trigger in unit tests. I have a Trigger I have a Rigger as an example:
***-- Create one trigger with two inserts:***
create trigger trg_I_Table_1
ON Table_1
FOR INSERT
as
insert into Table_2 (Col_1, Col_2, Col_3) select Col_1, Col_2, Col_3
from inserted
insert into Table_3 (Col_1, Col_2, Col_3) select Col_1, Col_2, Col_3
from inserted
go