I have a job called "Henryjoba". I'm trying to call that job via sp_start_job, but it's erroring out with
"Msg 121, Level 20, State 0, Line 2
A transport-level error has occurred when receiving results from the server. (provider: TCP Provider, error: 0 - The semaphore timeout period has expired.)"
Here is my SQL:
USE msdb ;
GO
EXEC dbo.sp_start_job N'Henryjoba' ;
GO
Any ideas what I'm missing?
thanks!