|
POST
|
Does anyone know if a mixture of operating systems is supported for each component? Linux Machines: (ArcGIS Datastore, ArcGIS Portal) Windows Machines (ArcGIS Server) how would we specify "SHARED_LOCATION" parameter in this case?
... View more
12-29-2022
09:22 AM
|
0
|
0
|
512
|
|
POST
|
Here's what I tried: 1) Created a checkpoint of VM (obivously) 2) Installed PostGIS 3.0.1 on the PostgreSQL 11.12 instance (that's currently configured for ST_Geometry storage) 3) Used Create Enterprise Geodatabase tool to create "demogdb", specifying spatial type as POSTGIS 4) Created appropriate users in demogdb 5) Created appropriate feature datasets in demogdb 6) Feature class to feature class tool in Pro to move data from ST_Geometry gdb to new demogdb. 7) demogdb feature classes show: ST_geometry (original) feature classes show this: The above workflow seemed to work fine. What's the purpose of exporting/importing the configuration keywords? I did export both the orginal and demogdb configuration keyworks and they each correctly show "ST_GEOMETRY" and "PG_GEOMETRY", respectively. thanks!
... View more
12-08-2022
10:53 AM
|
0
|
1
|
2167
|
|
POST
|
Thanks everyone, this should be enough to get me started with the test environment! Yes, we have ~90 PostgreSQL databases, but I would guess only 1/2 of them will make the migration. A lot of db cleanup needs to happen for projects (db's) that are no longer active. Sounds like the best path is to convert on-prem SDE.ST_GEOMETRY columns to PostGIS Geometry, then pg_dump. Transfer that pg_dump (.post file) to Azure Storage Account, then use pg_restore to the Azure instance. Our IT consultant is following this doc: Deploy Esri ArcGIS Pro in Azure Virtual Desktop, except Azure db for PG, not SQL. Our entire base Enterprise deployment is being moved to Azure VMs that are in the same region (Azure GOV) as the Azure db for PG instance. Our analysts' workstations are also being moved to Azure Virtual Desktops, and our file share (Pro projects, FGDBs, ect.) is being moved to Azure NetApp files. So, everything should be co-located in the same Azure region for minimal latency. I didn't even want to attempt on-prem workstations accessing cloud databases.
... View more
11-23-2022
09:15 AM
|
0
|
6
|
2214
|
|
POST
|
Existing on-prem server: Ubuntu Server 18.04 LTS PostgreSQL 11.12 Contains ~90 SDE Geodatabases; total size ~500GB ST_GEOMETRY is used All ArcGIS Enterprise components are getting moved to Azure VMs, workstations will be Azure Virtual Desktops and we want to deploy Azure database for PostgreSQL (database-as-a-service). Since ST_GEOMETRY cannot be enabled on databases in the cloud can anyone provide instructions for converting the existing ST_GEOMETRY spatial types to POSTGIS? thanks.
... View more
11-22-2022
12:26 PM
|
0
|
12
|
2817
|
|
POST
|
This continues to happen for me also. I just never hit Apply button on field calculator. That always negates this issue.
... View more
06-13-2022
03:46 PM
|
0
|
2
|
1298
|
|
POST
|
I tried all of those suggestions, see above. Field names in my case are always lower case, since the backend is PostgreSQL. Realize objectid > 0 would return everything, I was just trying to determine if the problem was Filter() or FeatureSetByName(). See below, problem was Filter().
... View more
01-05-2022
09:46 AM
|
0
|
0
|
3319
|
|
POST
|
Here's the solution, scrap the Arcade Filter() function, it simply does not work with globalid while offline. This expression works fine both online/offline. Upper/Lower case globalid wasn't the issue, both FM and map viewer BETA in Enterprise 10.9 were displaying Upper case. But, just for safety I used Lower. var relate_guid = $feature["rel_guid_pcs"]; var featSet = FeatureSetByName($map,"Point Count Stations", ['pcs_id','globalid'], false); for(var feat in featSet){ if(Lower(feat.globalid)==Lower(relate_guid)){ return feat.pcs_id; } }
... View more
01-05-2022
09:43 AM
|
1
|
0
|
3322
|
|
POST
|
Online, both app and Map Viewer BETA both of these filter expressions work, offline in app, neither of them work. "globalid = '" + relate_guid +"'" "globalid = @relate_guid" Online/Offine, this filter expression works: 'objectid > 0' @DougBrowning, can you try a filter expression in your environment that uses globalid? It would be great if you could repo this.
... View more
01-05-2022
09:21 AM
|
0
|
3
|
3327
|
|
POST
|
But, this edited Arcade Expression does work offline! var relate_guid = $feature["rel_guid_pcs"]; var featSet = Filter(FeatureSetByName($map,"Point Count Stations", ['pcs_id','globalid','objectid'], false), 'objectid > 0'); return First(featSet).pcs_id; What changed? I'm guessing that the offline replica.geodatabase that gets created either: Doesn't preserve globalid. So the Filter expression: parent.globalid = child.relate_guid doesn't retrieve anything. (I find this hard to believe). I tried adding a new related child point WHILE OFFLINE and the orig. Arcade expression still doesn't work. the Filter() data fcn doesn't support SQL queries against globalid while offline. (more plausible). ESRI -- Any docs on this?
... View more
01-05-2022
08:38 AM
|
0
|
5
|
3334
|
|
POST
|
I cannot get it to work offline, see below details. Environment: Enterprise 10.9 with PostgreSQL published feature service. Using map viewer BETA released with 10.9, added both point feature classes, they are related via globalid-guid. Arcade Expression on child layer: var relate_guid = $feature["rel_guid_pcs"]; var featSet = Filter(FeatureSetByName($map,"Point Count Stations", ['pcs_id','globalid'], false), 'globalid = @relate_guid'); return First(featSet).pcs_id; Online result: both map viewer BETA and Field Maps app (Android) work great. Select a child point and above expression retrieves parent.pcs_id. Offline result: same webmap, download ad-hoc offline area in Field Maps app (Android). Select a child point and it displays -- which obliviously doesn't work. Field Maps app (Android) error: Expression Name: expr0 Expression Title: Arcade Error Domain: com.esri.arcgisruntime.ArcGISRuntimeException Error Code: 15 Error Description: Invalid call. Unable to evaluate arcade expression. Evaluation_error_code::unexpected_null_value Line :3 @DougBrowning 1) Are you using AGOL or Enterprise? 2) Hosted feature service or published feature service?
... View more
01-05-2022
08:12 AM
|
0
|
6
|
3338
|
|
POST
|
Enterprise 10.9, Map Viewer BETA. Created a popup expression using the FeatureSetByRelationshipName function. I can successfully retrieve the parent feature attribute in the popup, no issues. But, when the webmap is accessed with the Field Maps app (Android) the popup shows an Error Code 6, Illegal State. Invalid relationship name. Question of the day: Are any of the FeatureSetBy.. Arcade functions supported in the latest field maps app? If so, does the map have to be online, ad-hoc created offline, or pre-defined offline? thanks.
... View more
01-04-2022
12:54 PM
|
0
|
9
|
3381
|
|
POST
|
So, "created_date" reflects when the record hit the feature service, i.e. when it was sync'd. What about ArcGIS Collector and/or FieldMaps apps that use SDE Enterprise Geodatabases published as feature services, is the behavior the same? 1) We create a blank SDE feature class, defining schema only 2) Archiving and Editor Tracking are enabled on the feature class 3) FC published as feature service, added to Webmap 4) User downloads offline area of the webmap, then collects data in the field while offline on 7/2/2021 5) 3 days later on 7/5/2021, the user sync's the offline area 6) What will created_date be, 7/2 or 7/5 ?
... View more
11-23-2021
11:16 AM
|
0
|
0
|
1228
|
|
POST
|
We have "Start" and "End" question types added to S123 Connect form. They automatically record when the survey record was started and ended, simple enough. But then, what does "created_date" field store? Is this the date/time that the S123 record was initially sent from the S123 app? i.e. sync'd with the feature service?
... View more
11-23-2021
09:59 AM
|
1
|
2
|
1275
|
|
POST
|
Here's system specs that perform slowly with Pro. Processor Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz 1.70 GHz (6-core, 6-thread) Installed RAM 16.0 GB (15.7 GB usable) Nvidia Quadro P400 (2 GB GDDR5 memory)
... View more
11-22-2021
12:08 PM
|
0
|
1
|
2416
|
|
POST
|
The only solution we have is to revert to 32-bit ArcMap (GUI is 10x faster then Pro), but now lacks all the web-GIS features required to work with a modern web-GIS platform like ArcGIS Enterprise 10.9. But, we shouldn't have to open a support ticket for basic functionality like scrolling in an attribute table. It's odd to me that no one here has mentioned the slow Pro GUI. Perhaps the majority of users are still on ArcMap 10.8.1, that would be my guess. We have several 6+ core workstations with 16GB+ of memory and Pro is significantly slower on all of them, compared to 32-bit ArcMap. I'm beginning to think it's our graphics cards...
... View more
11-22-2021
11:46 AM
|
1
|
3
|
2421
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-04-2025 11:45 AM | |
| 1 | 10-31-2025 06:53 AM | |
| 1 | 02-06-2019 06:41 AM | |
| 1 | 02-18-2025 11:55 AM | |
| 1 | 05-14-2024 10:29 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-09-2025
06:12 AM
|