|
DOC
|
@Jonathan_Marin the API changed at 3.5, so make sure you have the latest toolset (Item Dependency.zip). Also, what type of user are trying to connect with? For example, is it a Portal built-in account (i.e. portaladmin), or a SAML account (i.e. jskinner@esri.com)?
... View more
10-23-2025
05:25 PM
|
0
|
0
|
1085
|
|
POST
|
Hi @Kato, Can you post a screenshot of how you have the tool setup? Do you receive the same error when converting to a feature class?
... View more
10-23-2025
10:37 AM
|
1
|
0
|
230
|
|
DOC
|
@imansbburg if the replicas are not in use, you can unregister them. Also, test to make sure there are no orphaned locks. Stop ArcGIS Server and disconnect all users from the geodatabase. You can then query the following tables: sde.sde_layer_locks sde.sde_object_locks sde.sde_state_locks sde.sde_table_locks These should be empty at this point. If there are any rows, you can delete these. Before deleting be sure you have a database backup.
... View more
10-07-2025
06:32 AM
|
0
|
0
|
798
|
|
DOC
|
@Hal-AhmedShehata the Update Enterprise Geodatabase Data Stores.py will only update the metadata of the services. Ex: The script will not repoint the service to the new data source. This is done by updating the Data Store connection itself. There is no downside of not running the scripts other than seeing the incorrect database information reported in ArcGIS Server Manager (screen shots above).
... View more
10-07-2025
04:35 AM
|
0
|
0
|
1081
|
|
DOC
|
@KevinMorrow I'm not an expert with Web Scenes, but the issue may be going from AGOL to Portal. What version of Portal are you running? Also, if you want to share the Web Scene to a Group and invite my AGOL account, my username is 'jskinner_rats'.
... View more
10-06-2025
09:20 AM
|
0
|
0
|
761
|
|
DOC
|
@imansbburg there is most likely locks that are causing the delta table not to be compressed. Are there any replicas in your geodatabase? If so, make sure you synchronize these before executing the tool.
... View more
10-06-2025
07:55 AM
|
0
|
0
|
825
|
|
DOC
|
@RafaelFSouza I may have this completed in the next week.
... View more
09-25-2025
05:41 AM
|
0
|
0
|
838
|
|
POST
|
Hi @valenj88, IIS processes authentication methods in a specific order. When both Anonymous and Windows authentication are enabled at the same level, IIS will first attempt to use Anonymous Authentication. If this was working before, I can only think of some custom solution was in place. As a workaround, you can Enable Automatic Account Creation. Then, configure New Member Defaults to Viewer for both User/Role Type. You should have an indefinite number of viewer accounts for Enterprise. When a user accesses an application URL that is shared with Everyone, and they do not have an account, portal will create a Viewer account for that user.
... View more
09-24-2025
05:47 AM
|
0
|
1
|
274
|
|
DOC
|
As an organization, you may need to run Python scripts on a scheduled basis, such as through Windows Task Scheduler. However, determining whether a Python script executed successfully or encountered an error can be challenging. Monitoring the results can become quite cumbersome, especially when scripts are running frequently. Even with log file generation, consistently checking for errors can be inconvenient. The attached Logger.py file is designed to create log files and send an email notification in the event of an error. For a demonstration of how this can be utilized, please refer to the video below.
... View more
09-21-2025
09:52 AM
|
6
|
2
|
549
|
|
POST
|
@DougBrowning I highly recommend heavily used services to be set to Dedicated. For the number of instances, there is no default answer. I would recommend starting at a min of 1 and a max of 4. Let the service receive requests for a some time (i.e. half day/full day) and take a look in ArcGIS Server Manager > Logs > Statistics. You can view the number of requests that particular service is receiving. Check the Average Response Time statistic for the service. I typically recommend keeping the response to 2 seconds or less. If you see excessive times, check the Service Maximum Running Instances for the service: If the Max Running Instances are maxed out (i.e. 4 instances) this is indicating clients are waiting for a instance to handle their requests, which means you should increase the max instances for this service.
... View more
09-15-2025
03:46 PM
|
1
|
3
|
1420
|
|
POST
|
@Philip_Sarnecki you may get better performance using an Update Cursor rather than the field calculator. Ex: import arcpy
pointFC = r"C:\temp\test.gdb\points"
polygonFC = r"C:\temp\test.gdb\polygons"
# Perform Spatial Join
spatialJoinFC = arcpy.SpatialJoin_analysis(.....)
# Create lookup dictionary
nameDict = {}
with arcpy.da.SearchCursor(spatialJoinFC, ["uniqueId", "area_name"]) as cursor:
for row in cursor:
nameDict[row[0]] = row[1]
del cursor
# Update point feature class
with arcpy.da.UpdateCursor(pointFC, ["uniqueId", "name"]) as cursor:
for row in cursor:
row[1] = nameDict[row[0]]
cursor.updateRow(row)
del cursor
... View more
09-04-2025
03:51 AM
|
2
|
1
|
647
|
|
POST
|
Hi @Jay_Gregory, I don't know the specifics of how the distributed collaboration works, but I know GlobalIDs are required to create copies of the data and keep them in-sync, so I agree with you that the recreation of this field is the culprit. Are there several feature classes/tables that are updated via SQL that participate in your collaboration? It may be worth exploring other options outside of a distributed collaboration to keep these datasets in-sync. Here is one solution I've implemented with several customers: https://community.esri.com/t5/arcgis-online-documents/overwrite-arcgis-online-feature-service-using/ta-p/904457
... View more
09-03-2025
01:06 PM
|
0
|
0
|
478
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 2 weeks ago | |
| 1 | 3 weeks ago | |
| 1 | a month ago | |
| 1 | a month ago | |
| 1 | 11-07-2025 01:28 PM |
| Online Status |
Offline
|
| Date Last Visited |
Wednesday
|