SQL Server - Order of Execution / AFTER TRIGGER -


i know time delay between execution of statement , firing of first after trigger. going doing simple update of datetime2 field after query has completed concurrency reasons. instead of triggers have been first choice, select not available sql azure.

i'm looking find out if possible retrieve row before after triggers begin execution, , if chance of happening under heavy load?

there not delay such. trigger part of transaction/statement.

also, have inserted , deleted special tables contain changed data: no need query actual table in trigger

edit

finally, if there default on column can use this

update    sometable set    foo = ...,    bar = ...,    thedatetime2column = default --    ... 

Comments

Popular posts from this blog

php - Why I am getting the Error "Commands out of sync; you can't run this command now" -

linux - Does gcc have any options to add version info in ELF binary file? -

java - Are there any classes that implement javax.persistence.Parameter<T>? -