I\'m using Sqlserver express and I can\'t do before updated trigger. There\'s a other way to do that?
before updated
To do a BEFORE UPDATE in SQL Server I use a trick. I do a false update of the record (UPDATE Table SET Field = Field), in such way I get the previous image of the record.
BEFORE UPDATE
UPDATE Table SET Field = Field