|
POST
|
I just applied the 2.9.1 patch, and I ran some basic tests against polygon feature classes, and I am not seeing what you are seeing. I get <Polygon object at ...> when printing row and row[1]. Can you share a sample of the data set?
... View more
01-20-2022
03:14 PM
|
0
|
1
|
4911
|
|
POST
|
I haven't had a chance to dive in, but you should always share what version it last worked for you and what version you are using now. Saying "since updating, I am having a problem" doesn't give folks much to go on, especially if you think the issue is related to a change in Pro versions.
... View more
01-20-2022
08:18 AM
|
1
|
1
|
4924
|
|
POST
|
Interesting that Compact doesn't work well for you, we have really good results using that tool to clean up and shrink the size of bloated FGDBs.
... View more
01-17-2022
09:05 AM
|
1
|
1
|
3450
|
|
POST
|
@AlexKweya, up until a certain Pro 2.x version (I can't remember the exact version), ArcGIS Pro was not looking for the Office data drivers in the right place when users had Click-to-Run (CTR) installations, so users had to install the MS Access Database Engine driver even if they had an MS Office CTR installation. That issue has been corrected.
... View more
01-17-2022
09:02 AM
|
0
|
0
|
4862
|
|
POST
|
In your second code snippet, the overall search cursor and the update cursor in SpatialRenumberPoints are independent of each other. The reason the numbering isn't resetting is that the numbering is starting at 1 and going until the end for all records each time you call SpatialRenumberPoints. What might work is if you pass the CLUSTER_ID value through to SpatialRenumberPoints as a new argument, and then add a SQL WHERE clause to the update cursor in SpatialRenumberPoints to filter records to only that CLUSTER_ID.
... View more
01-17-2022
08:51 AM
|
2
|
1
|
3005
|
|
POST
|
Is the Geocoded_20210412 table in the same GDB as the data set being selected against?
... View more
01-12-2022
07:46 AM
|
0
|
0
|
3231
|
|
POST
|
Johannes, The WHERE clause does allow you to query other feature classes or tables in the same GDB as the data set being selected against. That said, not ever data source supports is (like shape files). Also, not every data source supports all the functionality the same. The Subqueries section of SQL reference for query expressions used in ArcGIS—ArcGIS Pro | Documentation covers most of the details.
... View more
01-12-2022
07:45 AM
|
0
|
0
|
3231
|
|
POST
|
Have you seen this Esri Community thread? It seems related: Solved: ArcMap.cache.data file getting huge - Esri Community
... View more
01-03-2022
08:34 AM
|
0
|
2
|
6265
|
|
POST
|
This isn't a Survey123, Python, or even Esri issue; you are running into a limitation of SQL Server. I suggest you do a general internet search for that SQL Server error message and also talk with a SQL Server DBA regarding why you are running into this issue.
... View more
01-03-2022
08:32 AM
|
2
|
1
|
2344
|
|
POST
|
@JoeBorgione, congratulations on retirement, and happy trails on your next chapter. As others have noted, it would be great if you would pop in from time to time.
... View more
12-21-2021
06:31 AM
|
1
|
0
|
1763
|
|
POST
|
Regarding your question: The underlying question I would need answered is - Can I work with ArcGIS Enterprise without having an ArcGIS Pro license? Absolutely yes, you can work with ArcGIS Enterprise and have no ArcGIS Pro license. Although there are differences, ArcGIS Enterprise portal is like having an on-premises ArcGIS Online. Just like ArcGIS Pro can work with ArcGIS Online, ArcGIS Pro can work with ArcGIS Enterprise; but just like you don't need an ArcGIS Pro licenses to login and use ArcGIS Online, you don't need an ArcGIS Pro license to login and use ArcGIS Enterprise. Although you can use ArcGIS Enterprise without an ArcGIS Pro license, a lot of people like having the full functionality of a desktop client to work with their data that is in ArcGIS Enterprise. ArcGIS Pro offers a lot of functionality for working with data that isn't available through ArcGIS Enterprise APIs.
... View more
12-12-2021
09:14 AM
|
1
|
1
|
2565
|
|
POST
|
A quick filesystem search on a stand-alone ArcGIS Server installation shows numerous components using log4j. This won't just be about patching a file, but lots of files involving multiple components of multiple products. A not-so-happy holidays for Esri dev teams.
... View more
12-11-2021
01:31 PM
|
3
|
0
|
18131
|
|
POST
|
If you are, or were, running Windows Server 2012 R2 or earlier, then you were likely running into this following issue if memory and CPU utilization is not too high :Unable to publish new or start existing services when a large number of ArcSOC.exe processes are running (esri.com)
... View more
12-11-2021
01:25 PM
|
0
|
0
|
4799
|
|
POST
|
A minor point of clarification, the in_layer for Select Layer By Location used to require a layer, but Esri made a change several versions ago (can't remember the specific version since it was quite a while back) where the tool takes both a layer or a feature class. When a feature class is passed to the tool, it dynamically creates a feature layer and that is what is returned from the tool. >>> import arcpy
>>> fc = # path to feature class
>>>
>>> sel_lyr = arcpy.management.SelectLayerByAttribute(fc, where_clause="ObjectID < 5")
>>> sel_lyr.getOutput(0)
<arcpy._mp.Layer object at 0x00000218EB275448>
>>> *I used Select Layer By Attribute to demonstrate because it was quicker, but both tools behave the same. I think in this case, creating layers over and over was causing the performance issue rather than creating a layer or two and reusing them over and over.
... View more
12-09-2021
11:04 AM
|
0
|
0
|
3609
|
|
POST
|
Historically, "in_memory" workspace was quite limited and Esri clearly stated that in-memory workspace wasn't a complete workspace, like a geodatabase. That said, Esri has added a lot of functionality to the newer "memory" workspace, and it is close to being complete. Whether you are running into a defect or known limitation is unclear from the current documentation. I suggest you open a case with Esri Support to get clarity and possibly log either a software or documentation defect.
... View more
11-30-2021
09:15 AM
|
2
|
2
|
4486
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 2 | 07-06-2026 12:29 PM | |
| 1 | 07-06-2026 12:00 PM | |
| 2 | 06-05-2026 10:30 AM | |
| 1 | 05-29-2026 08:22 AM |
| Online Status |
Offline
|
| Date Last Visited |
Friday
|