Since the code in a trigger runs serially does that mean a called sproc needs to finish running before the trigger can continue and run another sproc or do other processing?
In other words: do each of these sprocs need to finish before the next one starts or will they run in parallel?
Thanks,
--Leon
Code:
Alter TRIGGER tr_Times_INSERT_Laps
ON dbo.Times
AFTER INSERT
AS
DECLARE @tmID int
SET @tmID = (SELECT Id FROM Inserted)
EXEC ec_Live_Processing @tmID
EXEC ec_2nd_Sproc @tmID
EXEC ec_3rd_Sproc @tmID
Thanks,
--Leon