When the Trigger SQL server is fired After Insert?

1

When a trigger is triggered after an insert and the insert is within a transaction, does the trigger execute at the time of the insert or at the end of the transaction?

    
asked by anonymous 07.03.2018 / 21:18

1 answer

1

Trigger is triggered at the time of the INSERT. The transaction is only committed if all INSTRUCTIONS within it are successfully completed.

Here is a reference link for study:

    
08.03.2018 / 04:30