News

ALTER TRIGGER [dbo].[TRIG_tblBook_Update] ON [dbo].[tblBook] For UPDATE AS BEGIN SET NOCOUNT ON; IF (UPDATE (VersionId)) BEGIN /*ALWAYS WORKS*/ INSERT INTO tblSection (SectionId,VersionId ...
Most of the time, it could save the changes with maybe 2-3 UPDATE statements, and that's it.<BR><BR>So, like the title says, I want to find out what SQL statement caused a trigger to fire. have ...