How to start a DB job by batch file

 Copy below code into a text file, and modify the extension name from txt to bat.

 

ECHO Executing job
ECHO.
pause
osql -U "User_ID" -P "Password" -S "Server_IP" -Q "EXEC msdb.dbo.sp_start_job 'DB_Job_Name' "

ECHO job execution completed
pause
CLS
EXIT

你可能感兴趣的:(server,File,user,extension)