Link to home
Start Free TrialLog in
Avatar of T Hoecherl
T HoecherlFlag for United States of America

asked on

Trackiing execution of a SQL trigger

Is there a way (table, log, anything else) to tell whether a trigger has executed?
ASKER CERTIFIED SOLUTION
Avatar of Chris Luttrell
Chris Luttrell
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
create a log table
and insert some records in trigger :)
Hi,
You can use Transaction table within trigger to "score" the relevant execution date & time, to further know when record has been changed.