|
POST
|
These roles should be created when using SQL Express workgroup or desktop geodatabases. However if you are using enterprise geodatabases these roles are not created. Types of geodatabases: Geodatabase | Multiuser Geodatabase
... View more
08-22-2014
09:48 AM
|
3
|
2
|
2690
|
|
POST
|
William's answer is correct. We use the same codepath with Copy_management as we do with right-click 'Copy' - right click 'Paste' (or control+C, control+V). This maintains things like domains/relationships etc, it is actually making a copy of the data and its other related data and pasting it. Feature class to feature class is essentially an export of the data. This only copies what you specify in the tool. Copy preserves geodatabase maintained values such as OID or GlobalID while exporting data will not maintain these values.
... View more
08-20-2014
11:38 AM
|
1
|
0
|
3194
|
|
POST
|
My first impression is that this appears to be a software bug or a data issue. I would be interested to know: Are you are able to run the Synchronize Changes GP tool outside of python? Are you able to run the SynchronizeChanges_management function in a python script if your hardcode all your parameters? Are you able to sync using the replica manager tools? There does not appear to be anything in the script that should cause this type of failure.
... View more
08-13-2014
04:38 PM
|
2
|
2
|
1522
|
|
POST
|
Daniel, Have you installed the SQL Server native client on your server machine? This might be the reason you are not able to connect to the database. Try installing the native client and then rerunning the script.
... View more
07-30-2014
11:39 AM
|
0
|
1
|
2843
|
|
POST
|
James, Yes, you need to ensure that SQL Server native client is available on the client machine. We use this to connect to the database instance to create your geodatabase. Russell
... View more
07-30-2014
11:35 AM
|
0
|
0
|
765
|
|
POST
|
Erik, If you enable attachments prior to creating the replica the attachments will sync up when you perform your synchronization. If you enable attachments after the replica is created the best option is likely to unregister your replica and then register using the 'register existing data only' option. The register existing option would look something like this: a) Copy delete the feature class on the relative replica and copy the class (with attachments) to the relative replica. Ensure you have globalIDs before copying). b) Sync the existing replica to make sure each side has all pending changes. c) Create a new replica that includes the changed class with attachments enabled using the “Register Existing data only” option. This will take only a few seconds to complete as the data already exists on both sides. d) Assuming no additional edits had been done b/w steps b & c, unregister the old replica. (if edits had been done, just make sure to sync the old replica before unregistering) e) Now move forward with the new replica.
... View more
07-30-2014
10:44 AM
|
0
|
1
|
917
|
|
POST
|
Syed, The tool should work against all spatial types. Is this occurring with all your feature classes? Are you connected as the data owner? When you rebuild indexes with Oracle PL/SQL are you connected as the data owner? What options are you using when you run the tool? Does the tool stop responding immediately? How long are you waiting? How many tables are owned by the same data owner?
... View more
07-29-2014
04:56 PM
|
0
|
0
|
873
|
|
POST
|
Mar, Take a look at this topic, it describes how to perform the validation you are looking for. Customizing Script tool behavior The first example on this page shows you what you need to do in the updateParameters method: def updateParameters(self):
# If the option to use a weights file is selected (the user chose
# "Get Spatial Weights From File"), enable the parameter for specifying
# the file, otherwise disable it
#
if self.params[3].value == "Get Spatial Weights From File":
self.params[8].enabled = 1
else:
self.params[8].enabled = 0
You will want to change this slightly for your workflow.
... View more
07-29-2014
12:37 PM
|
1
|
1
|
1097
|
|
POST
|
Antonio, You should be able to export to shapefile. The error you are getting may indicate that you have attachments on your data, but even if that is the case it *should* work. I was able to successfully export on my feature services with attachments directly to shapefile without issue. I right clicked on my layer in my TOC and chose data -> export data. I would suggest contacting Esri Technical Support to get it sorted out if that does not work for you.
... View more
07-21-2014
02:55 PM
|
0
|
0
|
1903
|
|
POST
|
Hani, If you connect using an 'admin' connection in ArcMap/ArcCatalog you will only see the map service. If you connect using a 'user' connection you will see both the feature service and map service. Take a look at the 3 links at the top of this page for more info: http://resources.arcgis.com/en/help/main/10.1/index.html#//006600000450000000
... View more
07-21-2014
01:55 PM
|
2
|
1
|
652
|
|
POST
|
David, The functionality you are describing is available through editor tracking (no scripting necessary). Check out this link for more information: Editor Tracking You can either enable it manually: Enable Editor Tracking Or use GP tools to do this: using GP In your case you could just enable Editor and Edit Date, you don't need to enable everything. The bonus of doing this vs a script is that it will also work in ArcGIS Server and if you are in an enterprise geodatabase it will not cause conflicts. Hope this helps, Russell
... View more
07-14-2014
05:31 PM
|
0
|
1
|
1436
|
|
DOC
|
This is the same tool that was found in the OLD geoprocessing gallery. TableToFields | ArcGIS Resource Center
... View more
07-14-2014
12:33 PM
|
0
|
0
|
1756
|
|
DOC
|
Geoprocessing script tool to add multiple fields to a feature class or table. This tool uses a field definition table to define the parameters needed to run the 'Add field' tool and then runs that tool for each row in the field definition table. Included in the zip file is a file geodatabase with an example field definition table. Domains are set up on this table to make it easy to enter in parameters. The script tool makes use of the geoprocessing framework to do validation. The validation will take place after the field definition table has been specified and will generate the output schema based on the field definition table. This means that fields that this tool creates can be consumed 'downstream' in model bulder (eg delete field or calculate field). The field definition table can be any ArcGIS supported table (Info, DBF, Geodatabase, Microsoft Excel).
... View more
07-14-2014
12:32 PM
|
0
|
1
|
3524
|
|
POST
|
There is no doc specific to 10.2.1 so it has to go into the 10.2 online help. You should not see it in the installed help for 10.2. But you will see it in the installed help when you install 10.2.1. There is a mention in the what's new in 10.2.1 topic right at the top! http://resources.arcgis.com/en/help/main/10.2/index.html#/What_s_new_in_ArcGIS_10_2_1/016w0000005v000000/
... View more
01-09-2014
10:49 AM
|
0
|
0
|
1589
|
|
POST
|
There is a tool available to sort coded value domains named 'Sort Coded Value Domain' it can be used to sort on either the code or the description in either ascending or descending order. http://resources.arcgis.com/en/help/main/10.2/index.html#//00170000016t000000
... View more
12-09-2013
09:08 AM
|
0
|
0
|
1715
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-03-2026 05:49 AM | |
| 1 | 02-05-2026 08:07 AM | |
| 4 | 02-05-2026 08:13 AM | |
| 1 | 02-05-2026 07:48 AM | |
| 1 | 02-02-2026 07:23 AM |
| Online Status |
Offline
|
| Date Last Visited |
3 weeks ago
|