So the following script worked on Arcpy 32 bit but not on 64 bit IDLE. Any thoughts? 10.6.1 arcgis.
ALSO - this works against an fgdb but not an enterprise geodatabase (Oracle).
Thanks,
Eric
arcpy scriptingâ
--- Script
import arcpy
arcpy.env.workspace = "D:/WOBufferScripts/GLSVDEVL@GLS.sde"
arcpy.da.SearchCursor("GLS.MWO", ['SHAPE@'], "OBJECTID > 0")
print "It Worked"
--- 32 Bit Results
32 BIT
Python 2.7.14 (v2.7.14:84471935ed, Sep 16 2017, 20:19:30) [MSC v.1500 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>>
================== RESTART:

\WOBufferScripts64bit\test.py ==================
It Worked
>>> --- 64 Bit Results
64 bit
Python 2.7.14 (v2.7.14:84471935ed, Sep 16 2017, 20:25:58) [MSC v.1500 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
>>>
================== RESTART:

\WOBufferScripts64bit\test.py ==================
Traceback (most recent call last):
File "D:\WOBufferScripts64bit\test.py", line 4, in <module>
arcpy.da.SearchCursor("GLS.MWO", ['SHAPE@'], "OBJECTID > 0")
RuntimeError: cannot open 'GLS.MWO'