When you create a SQL Server Agent job with T-SQL, you use the sp_add_jobstep
stored procedure to add each job step.
If you ever need to add a new step to that job, you can use sp_add_jobstep
once again to add the new job step.
But you may also need to modify the existing step, depending on how you’d like the job to progress through the steps.
Continue reading