|
POST
|
I think Ian Murray is right. How did you format your full file path? Back slashes are special characters in Python and have to be escaped by using a double backslash \\. Alternatively, you could use a single forward slash instead of backslash or prefix the string with r using single backslashes. "c:\\temp\\myGDB.gdb\\Veredas" "c:/temp/myGDB.gdb/Veredas" r"c:\temp\myGDB.gdb\Veredas"
... View more
07-22-2015
09:46 AM
|
0
|
2
|
2081
|
|
POST
|
I believe all of the other fields in the table are included when the XY event layer is created. Have you tried it?
... View more
07-22-2015
09:18 AM
|
0
|
0
|
1373
|
|
POST
|
I'm trying to build some SDE maintenance Python scripts and found this help document very informative. ArcGIS Help 10.2 - Using Python scripting to batch reconcile and post versions However, I noticed that the detailed section on Rebuild Indexes and Analyze Datasets does not uses the NO_SYSTEM option for include_system, but the full example code at the bottom does. Could someone clarify exactly what the include_system option does and which is the recommended way to use it? Maybe a Python expert can help?
... View more
07-22-2015
09:14 AM
|
4
|
20
|
25314
|
|
BLOG
|
I was just looking around for something like this! I was starting to develop my own similar solution but I was looking at using the tempfile module to automatically create, name, and delete the connection file. Any suggestions there?
... View more
07-22-2015
09:03 AM
|
0
|
0
|
2767
|
|
POST
|
I don't think it's possible. I don't know a technical reason for why it's done this way, but it just seems simpler and easier. If you wanted to do this, here are the options I can think of: Create one version but only edit one feature class at a time, reconciling and posting after each feature class edit is complete. Create a separate version for each feature class you'd like to edit and post them as needed. You can have all the different versions in the same map to make it easier.
... View more
07-22-2015
08:54 AM
|
1
|
0
|
1000
|
|
POST
|
ArcGIS Help 10.2 - Adding x,y coordinate data as a layer
... View more
07-21-2015
01:18 PM
|
1
|
2
|
1373
|
|
POST
|
I'm looking for a way to download the Fiber Data Management Tools (Mature Support) | ArcGIS for Telecommunications add-in. The product page has information on installing it, but no links to the download. I found what seems to be the project page on GitHub, but the zip file does not contain the esriTelcoTools.esriAddIn file (only a similarly named .csproj file). I know it's in "Mature Support", but does anyone know where I can download this?
... View more
07-15-2015
12:41 PM
|
0
|
5
|
9255
|
|
POST
|
Your code is missing the indentation. Please make sure it pastes in with the indentation preserved or else it's difficult for us to interpret what you really intend your code to do. Also, on line 48, did you mean to assign that to a variable or something?
... View more
07-08-2015
02:51 PM
|
0
|
3
|
3054
|
|
POST
|
I'm still not clear as to what connections are on which version. Here's what I've gathered so far, please fill in the blanks... "Connection One" User = ________ Version = Enterprise "Connection Two" User = SDE Version = ________
... View more
07-07-2015
12:27 PM
|
0
|
1
|
2472
|
|
POST
|
I'm having trouble understanding exactly what you're after. You do not assign one version to a feature class or dataset. Instead, each feature class is viewed/edited in one version at a time. In your case, when you access the feature class for view or edit, you will specify to use the "Enterprise" version. You can do that with Change Version. However, you can also use a database connection with a particular version specified so anything you do with data from that connection will use that version. Please describe the specific operations/tools your Python script is using on the data.
... View more
06-29-2015
02:00 PM
|
0
|
3
|
2472
|
|
POST
|
According to the documentation for ImportToolbox(): If the toolbox does not have an alias, the module_name is required. Does your toolbox have an alias?
... View more
06-25-2015
10:55 AM
|
1
|
4
|
2667
|
|
POST
|
I just tried it without a Table View and it worked. Here's my code. import arcpy
import os
myDir = r"C:\Temp"
myGDB = "TEMP.gdb"
myTable = os.path.join(myDir, myGDB, "SomeTableName")
myExcel = os.path.join(myDir, "myExcel.xls")
arcpy.TableToExcel_conversion(myTable, myExcel)
... View more
06-19-2015
09:44 AM
|
2
|
0
|
7285
|
|
POST
|
I don't use Model Builder much, but I think when people are in this position and need to use more than one iterator, they break them out into separate models and call them from the original model. Although that's what you're having trouble with, I think it's the right path. Maybe this will help? ArcGIS Help 10.2 - Running a model within ModelBuilder
... View more
06-19-2015
09:30 AM
|
1
|
1
|
4241
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-23-2025 03:53 PM | |
| 1 | 04-28-2026 07:25 AM | |
| 1 | 03-19-2026 08:59 AM | |
| 1 | 02-12-2026 01:37 PM | |
| 1 | 12-01-2025 06:19 AM |