I have a python script that I would like execute on an interval of every 5 minutes to check a SDE field for a new record.
Our Enterprise Systems team does not allow Windows Task Scheduler to execute Python. Does anyone know an alternative way to have the script executed?
Currently running ArcGIS 10.5.1 on Windows and SQL Server 2014.
Here is what the script does:
- Connect to SDE
- Start the arcpy.da.Editor session
- Open a arcpy.da.UpdateCursor session
- Look for null values and if there is a null, update it a string value
- Close the arcpy.da.Editor sesion
The script needs to be run on a server and we are not allowed to use Service Accounts with passwords. We only have Group Managed Service Accounts (gMSA) with no passwords and those are not allowed to execute the python exe.