|
POST
|
Hi @PanGIS, are you also sharing the Map Image Layer to the Org and Groups?
... View more
11-20-2024
05:17 AM
|
0
|
0
|
1226
|
|
DOC
|
@TomShewring this should not occur if you're running command prompt as a named user in Portal, and you have Portal's URL added to the Local Intranet (i.e. Start > Internet Options > Security tab > Local Intranet > Sites > Advanced > specify the portal URL (minus the web adaptor) > Add):
... View more
11-20-2024
04:51 AM
|
0
|
0
|
20905
|
|
POST
|
Try the following:
try:
feature_layer.edit_features(adds = sdf.to_featureset(), field_mapping=field_mapping)
except Exception as e:
print(e)
arcpy.AddError(str(e))
... View more
11-20-2024
04:43 AM
|
0
|
0
|
3169
|
|
POST
|
Hi @JACooper, I've seen issues where feature services been somewhat 'corrupted'. As a test, try publishing the data as a new service, and try overwriting the new service to see if that works. If it works, something is most likely corrupt with the service.
... View more
11-19-2024
01:25 PM
|
2
|
2
|
7592
|
|
POST
|
Hi @MonicaBeaton, you should still be able to access Portal through the following URL (https://machinename.domain.com:7443/arcgis/home). Starting at Enterprise 11.4, you can now update your Organization's URL:
https://enterprise.arcgis.com/en/portal/latest/administer/windows/update-the-organization-url.htm
If possible, I would recommend upgrading to 11.4.
... View more
11-19-2024
11:47 AM
|
1
|
0
|
1822
|
|
POST
|
@ChallagundlaSindhuraITS yes, you can use AGOL Notebooks to host the script. Below is an example on how to send an e-mail.
from arcgis.gis import GIS
# Variables
username = 'jskinner_rats'
password = '********'
# Connect to AGOL
gis = GIS('https://www.arcgis.com', username, password)
# Create list of users to send e-mail to
userList = []
user = gis.users.get('jskinner_rats')
userList.append(user)
# Construct message and send
messageSubject = 'This is a test message from AGOL'
messageMessage = 'This is the plain text message that we are sending.'
gis.users.send_notification(userList, subject = messageSubject, message = messageMessage, type = 'email')
... View more
11-19-2024
09:35 AM
|
1
|
4
|
1517
|
|
DOC
|
@TomShewring try removing the username/password variables from the following lines:
These should not be needed if you Windows Authentication is enabled. It will use the window's account that's signed into the server.
... View more
11-19-2024
09:30 AM
|
0
|
0
|
20948
|
|
POST
|
@ChallagundlaSindhuraITS is your Survey123 feature service hosted in AGOL? Here is an example script on how to send an e-mail for an AGOL hosted feature service:
https://community.esri.com/t5/python-documents/send-email-when-a-feature-is-added-to-an-arcgis/ta-p/920545
I recommend configuring Windows Task Scheduler to execute this script on a server that has ArcGIS Pro install, and will not be turned off.
... View more
11-19-2024
09:02 AM
|
0
|
6
|
1524
|
|
DOC
|
@TomShewring
Do you have Windows Authentication enabled on Portal's web adaptor?
What version of Enterprise?
What version of the arcgis api for python?
... View more
11-19-2024
08:57 AM
|
0
|
0
|
20959
|
|
DOC
|
@TomShewring I've seen this error occur sporadically in some implementations (mine included), and I'm unable to find a cause. To workaround the issue, I recommend moving the Clear scratch directory section to the beginning of the script. For example, move this section of code above the section that connects to AGOL/Portal.
... View more
11-19-2024
06:43 AM
|
0
|
0
|
20975
|
|
DOC
|
@TomShewring are you attempting to update a hosted feature service, or a referenced service?
... View more
11-18-2024
01:30 PM
|
0
|
0
|
21006
|
|
DOC
|
Delta tables in an enterprise geodatabase are used to manage versioned data. When you edit data in a versioned geodatabase, the changes are stored in delta tables (A & D tables) until they are reconciled and posted to the parent version. Managing delta tables is crucial for performance optimization in versioned geodatabases. Having large delta tables in an Enterprise geodatabase can have several adverse effects on the system's performance and data management. For example, large delta tables can slow down data retrieval and editing operations. Queries that involve versioned data may take longer to execute, affecting overall system performance. Regular maintenance, such as compressing the geodatabase, helps manage the size and performance of delta tables. Here is a script you can optionally automate to compress an enterprise geodatabase.
If there are performance issues for feature classes/tables, use the attached tool to create a report for the delta counts of versioned feature classes/tables. This report can offer valuable insights into whether large delta tables might be impacting the performance.
Configuring the tool in ArcGIS Pro:
GeoProcessing Results:
CSV Results:
... View more
11-18-2024
12:35 PM
|
3
|
0
|
1227
|
|
POST
|
Hi @Jack_in_the_box, take a look at the attached tool. It will convert a hyperlink field to attachments.
... View more
11-18-2024
06:07 AM
|
1
|
0
|
1218
|
|
POST
|
Hi @MattNicol, you will want to install 10.9.1 in the new environment, migrate using the webgisdr (see the following document), and then upgrade to 11.3.
... View more
11-18-2024
05:37 AM
|
1
|
1
|
1818
|
|
DOC
|
@Teo unfortunately, not. This would be a referenced service. See the notes above:
but referenced services can be rather difficult. For example, there are numerous prerequisites that are required for a service to be published from an Enterprise Geodatabase, such as:
does the ArcGIS Service Account have necessary privileges
is the geodatabase registered with the ArcGIS Server instance
does the feature class in fact exist within the new geodatabase
etc
... View more
11-18-2024
04:52 AM
|
0
|
0
|
34755
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | yesterday | |
| 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 |
Online
|
| Date Last Visited |
32m ago
|