Tagged Questions
3
votes
1answer
134 views
Arcpy does not execute “CopyFeatures_Management” to write a featureclass to an ArcSDE database
I have some problems with my Python script. The script gets an JSON with different information about images. The information includes general information about images and also the gps position of ...
3
votes
1answer
147 views
How to clip a Oracle query layer directly in a Python script?
I have a query layer directly running from ORACLE database in a MXD. I want to clip this layer with a layer being created in another MXD in a Python based tool. My question is to do this clip ...
2
votes
3answers
2k views
Python script: Access data from databases [closed]
I need to access data that is inside an oracle database using a python script. Its a Unix server running oracle 10g. I dont have much access to the database server.
It works fine on model builder ...
2
votes
3answers
537 views
Tracking change with ArcSDE/Oracle
I'm looking for the simplest way to track changes ([delete, update, create] feature(s)) made to the DEFAULT version of a given feature class in ArcSDE(10) and Oracle(11g).
Qualifier: I am not a dba ...
5
votes
3answers
336 views
How not to Copy Features when too many would be output?
This question has already been posed to the ArcGIS Geoprocessing forum but I have had no responses there.
I have a 3.5 million polygon layer (cadastre) stored in Oracle via ArcSDE. I use a polygon ...
2
votes
3answers
540 views
Definition Query to Python script on Oracle 9i and ArcGIS 9.3.1
SUBTYPECD=1 AND SERIESNAME NOT LIKE '%-%' AND OPERATIONALSTATUS IS NULL OR SUBTYPECD=1 AND SERIESNAME NOT LIKE '%-%' AND OPERATIONALSTATUS = 976
The above is my def query in ArcMap against ArcSDE ...
3
votes
1answer
857 views
gp.Describe() on sde table
Python newbie needing help with a simple task. I'm trying to create a list of stand-alone tables in an sde workspace.
Code below works just fine to list feature class names and paths and table ...