I created a simple ON Update trigger on MyTable.
When i open MyTable and change a field, the trigger works fine (basically it is make a copy of the altered row in another table).
But when i do an UPDATE MyTable SET ... the trigger is NOT working. In some situations that may be good behavior, but in this case i want the trigger to run on every row in MyTable.
I'm working with MS SQL 2005. I tried ENABLE TRIGGER, without succes.
When i open MyTable and change a field, the trigger works fine (basically it is make a copy of the altered row in another table).
But when i do an UPDATE MyTable SET ... the trigger is NOT working. In some situations that may be good behavior, but in this case i want the trigger to run on every row in MyTable.
I'm working with MS SQL 2005. I tried ENABLE TRIGGER, without succes.