|
DOC
|
@Joshua-Young thank you for bringing this to my attention! I've updated the scripts to excluded the Hosted folder when updating services.
... View more
03-23-2025
07:47 AM
|
0
|
0
|
25584
|
|
POST
|
Hi @AndreaStaten, This could be a possible bug. You could try adding additional code to move the layer after it's created. For example, add a variable and print statement after the following line to see what's returned in the string: # Share the route as a route layer
result = arcpy.na.ShareAsRouteLayers(route_layer, route_layer_name, output_folder)
print(result) If the item ID is returned, you could move the layer with the following: from arcgis.gis import GIS
# Connect to Portal
gis = GIS("https://gis.issue.com/issuegisportal", "admin", "Password123")
# Move item
item = gis.content.get(item_id)
item.move('Meter')
... View more
03-14-2025
08:36 AM
|
0
|
0
|
728
|
|
POST
|
@KatieStenson1 are you able to query the service by going to the REST URL? If you'd like, you can share the service to a Group and invite my AGOL account (jskinner_rats). I could take a look at it.
... View more
03-14-2025
07:16 AM
|
0
|
1
|
2589
|
|
POST
|
@baohuachu7 check out these tools, they can migrate content between dev and prod environments: https://community.esri.com/t5/arcgis-enterprise-documents/migrate-content-for-arcgis-enterprise-arcgis/ta-p/1365455
... View more
03-14-2025
06:43 AM
|
0
|
0
|
734
|
|
POST
|
Hi @TimHayes3, are you currently leveraging Enterprise where you have Portal, ArcGIS Server, Data Store, and Web Adaptors? If so, you won't need to stand up another ArcGIS Server instance. You could simply stand up a web server that is externally accessible (i.e. in a DMZ). Install the Web Adaptor on this new web server and configure with your federated ArcGIS Server instance (you can have multiple web adaptors configured with a single instance of ArcGIS Server). Any service you want externally accessible, you just need to share this with Everyone within Portal. Now the service can be accessed with the external web adaptor with no authentication required.
... View more
03-14-2025
05:57 AM
|
1
|
0
|
2022
|
|
POST
|
Hi @ericcrossen, You could do something like below: import arcpy
# Variables
silverDataset = r"c:\Database Connections\GIS.sde\VECTOR.silver"
bronzeDataset = r"c:\Database Connections\GIS.sde\VECTOR.bronze"
silverDatasetDateField = 'inspectdate'
bronzeDatasetDateField = 'editdate'
# Create list of all dates
dates = []
with arcpy.da.SearchCursor(silverDataset, [silverDatasetDateField]) as cursor:
for row in cursor:
dates.append(row[0])
del cursor
# Sort list
dates.sort()
# Get most recent date
mostRecentDate = dates[-1]
# Select records from bronze dataset
arcpy.SelectLayerByAttribute_management(bronzeDataset, "NEW_SELECTION", f"{bronzeDatasetDateField} >= '{mostRecentDate}'") If the data is in a File Geodatabase, the query in the Select Layer By Attribute would be slightly different: arcpy.SelectLayerByAttribute_management(bronzeDataset, "NEW_SELECTION", f"{bronzeDatasetDateField} >= date '{mostRecentDate}'")
... View more
03-13-2025
05:55 AM
|
1
|
0
|
1136
|
|
POST
|
Hi @KatieStenson1, if you're able to query the service via the REST endpoint, you could try this old tool to download the data.
... View more
03-13-2025
05:38 AM
|
0
|
1
|
2653
|
|
POST
|
@cjms do you have ArcGIS Server services accessing your Enterprise Geodatabase. If you do, you will want to make sure these services are stopped. Here is a script that will stop ArcGIS Server services, disconnect users, stop connections to the enterprise geodatabase, reconcile/post versions, compress the database, allow connections again, rebuild stats/indexes, start ArcGIS Server services, and create a report of the before/after of your delta tables.
... View more
03-13-2025
04:09 AM
|
1
|
0
|
2080
|
|
POST
|
Hi @MarianHaluska, it looks like the service account you're updating a is a local account. First, go to the server's Computer Manager by searching for Computer Management in the windows search bar. Within there, navigate to Local Users and Groups > Users folder. Right-click the arcgis username > Set Password: After you set the password here, try executing the ArcGIS Server Account utility again.
... View more
03-13-2025
04:05 AM
|
1
|
1
|
2977
|
|
DOC
|
@Evan_LocalGov the workflow changed slightly. The previous workflow walked through registering a new Data Store connection to the new SQL instance. This new workflow simplifies things by updating the existing Data Store connection. The scripts have also changed as the previous ones missed updating some of the backend files. If you get stuck, just comment on this article and I can assist.
... View more
03-13-2025
03:59 AM
|
0
|
0
|
25731
|
|
POST
|
@KannanSundaresan this is a known issue. Take a look at the attached zip file that contains a script and document on how to update the script.
... View more
03-11-2025
05:24 AM
|
0
|
6
|
2005
|
|
DOC
|
@Scott-Shavnore the scripts will iterate through directories and update the necessary files, so I think the only thing that would change is how to iterate through an AWS DynamoDB/S3 bucket.
... View more
03-08-2025
03:46 AM
|
0
|
0
|
25795
|
|
DOC
|
@Thomas_Puthusserry do you see any differences with the user accounts created from the script, and the one created manually? A customer I'm working with ran the same script last week and noticed the SAML account created via the script did not append the _agolshortname to the SAML account since they did not have that specified in the CSV. However, the account still worked without the shortname. This may be different for different SAML IDPs, though.
... View more
03-07-2025
06:03 AM
|
0
|
0
|
18732
|
|
DOC
|
@SerjStol if the exp app is in AGOL, feel free to invite my account (jskinner_rats) to a Group that it's shared to and I can take a look.
... View more
03-06-2025
03:36 AM
|
0
|
0
|
16851
|
|
POST
|
Hi @Eisele, Once that option is enabled, it cannot be disabled: https://enterprise.arcgis.com/en/portal/latest/administer/windows/manage-collaborations-as-guest.htm#:~:text=Once%20enabled%20on%20a%20workspace%2C%20this%20option%20cannot%20be%20disabled. You can find more details of why the collaboration is failing with the following steps: 1. Log into Portal Sharing REST (https://<webadaptorurl>/sharing/rest) 2. Click Login at the top right 3. Click Home at the top left > Portals > Self 4. Scroll down to the bottom and click Collaborations 5. Click on the Collaboration > Collaboration Workspaces > Workspace Id 6. Click Sync Status to see more details
... View more
03-05-2025
06:25 AM
|
0
|
0
|
822
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-08-2026 12:27 PM | |
| 4 | 05-07-2020 05:14 PM | |
| 1 | 03-25-2026 04:16 AM | |
| 1 | 03-16-2026 01:00 PM | |
| 1 | 12-22-2025 10:39 AM |
| Online Status |
Offline
|
| Date Last Visited |
Friday
|