If I execute two stored procedures in the same connection like:
exec dbo.SP1;
exec dbo.SP2;
Can I be sure that SP2
not will start before SP1
is finished?
If I execute two stored procedures in the same connection like:
exec dbo.SP1;
exec dbo.SP2;
Can I be sure that SP2
not will start before SP1
is finished?