We are trying to run a python script on the server on a feature class within an SDE database.
The error code reads: ERROR 000732: Input Features: Dataset does not exist or is not supported.
import arcpy, csv, os
import arcpy._mapping
import arcpy.da
arcpy.env.workspace = "Database Connections\\ARC1_SQLExpress(2).sde"
theDBfile = "L3_Edits.DBO.L3_Lines"
fcoutput = "L3_Edits.DBO.L3_verts"
arcpy.FeatureVerticesToPoints_management(theDBfile,fcoutput,"ALL")
We are running ARC 10.2; Windows Server 2008 R2.
Our SDE connection is missing something... None of the examples we have seen have shown anything else workable.
Any suggestions?
The error code reads: ERROR 000732: Input Features: Dataset does not exist or is not supported.
import arcpy, csv, os
import arcpy._mapping
import arcpy.da
arcpy.env.workspace = "Database Connections\\ARC1_SQLExpress(2).sde"
theDBfile = "L3_Edits.DBO.L3_Lines"
fcoutput = "L3_Edits.DBO.L3_verts"
arcpy.FeatureVerticesToPoints_management(theDBfile,fcoutput,"ALL")
We are running ARC 10.2; Windows Server 2008 R2.
Our SDE connection is missing something... None of the examples we have seen have shown anything else workable.
Any suggestions?