I have a Python (3.7.2)
file that pulls data from a third party API
, saves the data in a local CSV
file on Windows Server 2016
and then does a bulk import
into an instance of SQL Server 2016
(13.0.4224.16).
This works without issue if I manually run the script from an elevated command prompt. However, I don't want to have to manually run this script as I'm wanting it to execute every hour. I know how to schedule from the Task Scheduler
on the server OS, but I would like to schedule as an automated job using SQL Server Agent
. This way I can directly manage/track the jobs with SSMS
and not have to log in to the server itself to check the scheduled tasks.
I currently have a job configured with 1 step of type Operating system (CmdExec)
and the Command:
set to "C:\Windows\System32\cmd.exe" "python C:\PythonScripts\myPython.py"
:
My thinking with the above is that cmd.exe
would be opened and call the python.exe
program with the python path I supplied.
However, when I run the job it just hangs in status of In progress
and never finishes. The script when run manually successfully completes in 9 seconds:
Any ideas here?