I've developed a geoprocessing service that accepts a personal geodatabase as an attachment. After this MDB is copied to the server, I'd like to use ArcPy to open it, edit some feature classes, then append the data to an existing SDE dataset.
Given that ArcGIS Server GP Services are running 64 bit python, I tried using a subprocess to call 32 bit python:
p = subprocess.Popen('C:\Python27\ArcGIS10.3\python "D:\Data\GISData\Scripts\CheckFCExists.py")
p.returncode returns a value of 1, indicating that the call to subprocess failed.
Is this possible?
أكثر...
Given that ArcGIS Server GP Services are running 64 bit python, I tried using a subprocess to call 32 bit python:
p = subprocess.Popen('C:\Python27\ArcGIS10.3\python "D:\Data\GISData\Scripts\CheckFCExists.py")
p.returncode returns a value of 1, indicating that the call to subprocess failed.
Is this possible?
أكثر...