I have a python script that is running via windows task scheduler. It is using esri's arcpy module to talk to oracle and then writing a csv to the file system. It is showing a last run result of 0x80131029. However, everything is working fine otherwise. No exceptions are thrown and all of the outputs look fine. How can I track down the meaning of this exit code?
<Triggers>
<CalendarTrigger>
<StartBoundary>2013-08-26T01:45:00</StartBoundary>
<Enabled>true</Enabled>
<ScheduleByDay>
<DaysInterval>1</DaysInterval>
</ScheduleByDay>
</CalendarTrigger>
</Triggers>
<Actions Context="Author">
<Exec>
<Command>cmd</Command>
<Arguments>/c ExportMeter.py --maindb=xxxx --logdb=xxxx >cmd.log 2>&1</Arguments>
<WorkingDirectory>C:\XXX\ExportMeter</WorkingDirectory>
</Exec>
</Actions>
User contributions licensed under CC BY-SA 3.0