I want to create a JOB in SQL Server 2012, to execute two related stored procedures.
Exec my_First_Procedure
Exec my_Second_Procedure
If I create the JOB like above, the second one start the execution after the first one completed, or both the Queries Executed simultaneously?
Help me to find it. Thanks in advice.