I am trying to run a sql job from a windows service, according to the MSDN page and this
A blog post I need to run the job by declaring a JOB STEP NAME. Is there a way to
tell the job to START AT STEP 1 , this way if the step names change I dont need to change a config file every time?
I am trying to run a sql job from a windows service, according to
Share
You can use the sp_start_job system stored proc. The step name is optional. Just execute it as you would any other stored proc.