Hi
I have created an Update trigger on Humanresources.employee
create trigger TrgUpdate on Humanresources.employee
after update as
Begin
Print 'Record Updated'
end
When ever i make an update into the Humanresources.employee am getting the Message twice as below
Record Updated
Record Updated
(1 row(s) affected)
I already read some articles on the same but still am not clear,please help me out to solve this
Thanks in advance