Home >Database >Mysql Tutorial >How to start a DB job by batch file

How to start a DB job by batch file

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-07 15:49:011167browse

Copy below code into atext 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

 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

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn