Trigger execute update after the procedure has been executed

1

I would like to know how I do in SQL Server for a trigger check if the procedure was executed and if it was executed, this trigger will do another update. Thanks in advance for your attention.

Att, Marcilio

    
asked by anonymous 30.03.2016 / 19:46

1 answer

1

Why is the update not performed within the procedure?

Trigger is a reaction to a DDL or DML command.

    
05.04.2016 / 15:48