python script run result 0x80131029

-1

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 &gt;cmd.log 2&gt;&amp;1</Arguments>
      <WorkingDirectory>C:\XXX\ExportMeter</WorkingDirectory>
    </Exec>
  </Actions>

python
scheduled-tasks
arcpy
asked on Stack Overflow Oct 23, 2018 by fallingdog • edited Oct 25, 2018 by fallingdog

0 Answers

Nobody has answered this question yet.


User contributions licensed under CC BY-SA 3.0