Viewing 2 posts - 1 through 3 (of 3 total)
Right, it doesn't work.
The trigger you gave me allows me to change rows one and five but I can't changes them back. Example
UPDATE TEST
SET col1 = 'one_test'
WHERE col1 = 'one'
(changes the row...
August 14, 2006 at 2:47 pm
#654953
Thanks Jo, very simple and effective.
I changed the trigger to this and it worked great.
CREATE TRIGGER TR_TEST_MANDATORY ON dbo.TEST for UPDATE, DELETE
AS
SET NOCOUNT ON
IF
August 14, 2006 at 7:56 am
#654817