|
IDEA
|
In the Catalog pane > Export context menu, add an option to Export to Excel. Exporting to Excel is a common workflow. A Catalog option would be more convenient than searching for the Table To Excel tool.
... View more
08-29-2024
02:01 PM
|
3
|
4
|
1179
|
|
IDEA
|
ArcGIS Pro 2.9.5 I have several FCs. I want to export their attribute tables to a single Excel spreadsheet file (as separate sheets within the same file). The Table To Excel geoprocessing tool creates a new Excel file for each table export. Can Pro be enhanced to allow exporting a table to an existing Excel file? Copying from the attribute table and pasting it into a new sheet in Excel works for some use cases. However, it is very slow for large tables and seems less robust than a formal GP tool. I'm not sure how copying works behind the scenes in Windows 10, but it might not be ideal to have that much data stored in the clipboard in RAM.
... View more
08-29-2024
12:42 PM
|
2
|
3
|
3286
|
|
POST
|
Sometimes I use MIN(OBJECTID). Edit: CAST(MIN(OBJECTID) AS INT) But I prefer to use Oracle’s ROWNUM pseudocolumn. I imagine SQL Server has an equivalent mechanism. I normally need to do this: CAST(ROWNUM AS INT) AS ROWNUM_ so that Pro will recognize the number as an integer instead of a double.
... View more
08-28-2024
08:07 PM
|
3
|
0
|
1552
|
|
IDEA
|
...I currently am having a major struggle getting views to work in a file geodatabase at all... Yeah. I've had a lot of issues with FGDB views too. I often forget that it's possible to register an FGDB view with the geodatabase; they're not registered by default. But I don't know if that solves many problems or not; I haven't tested it enough. I talk about some FGDB database view challenges in these posts: Selecting the most recent records based on unique values in another field Select maximum values in Select By Attributes (greatest n per group) I remember finding it very helpful to put the data into a mobile geodatabase and use a SQL client like DBeaver to write my SQL queries. Then, once I'd figured out the SQL, I'd export the data to an FGDB and create an FGDB database view using the SQL I'd written for the mobile geodatabase. That's clunky, but it's better than writing FGDB SQL in the Create Database View geoprocessing tool SQL parameter.
... View more
08-28-2024
09:50 AM
|
0
|
0
|
1239
|
|
IDEA
|
As a workaround: We can try hiding/embedding the SQL expression using Make Query Table. The SQL expression behaves like a pre-filter, applied before the join is performed, which is what we want, unlike definition queries. https://community.esri.com/t5/arcgis-pro-ideas/consistent-visible-sql-expressions-and-query/idc-p/13... But we have to be careful not to forget about that SQL expression because it isn't visible or modifiable anywhere. I find it helps to describe the SQL expression in the layer's name.
... View more
08-27-2024
10:59 PM
|
0
|
0
|
1205
|
|
IDEA
|
If the join table has a definition query, the Keep all input records parameter will have no effect. Manually updating the definition query by appending or OBJECTID is null can fix this if appropriate. https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/add-join.htm
... View more
08-27-2024
10:56 PM
|
0
|
0
|
1206
|
|
IDEA
|
If the join table has a definition query, the Keep all input records parameter will have no effect. Manually updating the definition query by appending or OBJECTID is null can fix this if appropriate. https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/add-join.htm
... View more
08-27-2024
10:53 PM
|
0
|
0
|
1281
|
|
IDEA
|
The Join Operation parameter has three states to adjust the cardinality. The default is blank and will allow the data source to attempt a one-to-many join. The Join one to many option will work only on specific data sources that have an Object ID field. The Join one to first option will use the first match in the table, which may result in different outputs if the Object ID field is changed or the workspace the table is copied to changes. One-to-first joins are not case sensitive; one-to-many joins are case sensitive. https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/add-join.htm
... View more
08-27-2024
10:02 PM
|
0
|
0
|
1500
|
|
POST
|
Disallow select by attributes on 1:M join with duplicates
... View more
08-27-2024
09:29 PM
|
0
|
0
|
1537
|
|
IDEA
|
Select by Attributes is not supported for 1:M joins when there are duplicate OBJECTIDs in the attribute table. The selection doesn’t work as expected; incorrect rows are selected. Select By Attributes on joined data — For rows that are 1:M, all rows in the join table get selected, despite selection criteria That limitation is currently unfixable. Instead of confusing users with wrong selection results, I’m wondering if it would be safer to disable Select By Attributes in this specific scenario — when the Duplicates warning is present in the attribute table.
... View more
08-27-2024
09:27 PM
|
4
|
0
|
565
|
|
IDEA
|
In the Add Join tool, choose if the join will be case sensitive or case insensitive. Related: Why aren't one-to-first joins case-sensitive?
... View more
08-27-2024
09:12 PM
|
8
|
1
|
1519
|
|
IDEA
|
It's my understanding that AGOL data is limited in ArcGIS Pro because database views and query layers are not supported. For example, @JustinH's requirement in 1:M Join to Pull feature with Specific Attribute information (AGOL Feature Service that is hosted). It would be ideal to dynamically query AGOL data in Pro rather than export to a file geodatabase or mobile geodatabase. An example of a dynamic query in a feature layer would be: replace values in a field on the fly—replace nulls with zeros (or zeros with nulls). Could dynamic value replacement functionality be added to one of the existing feature layer geoprocessing tools, such as Make Query Table?
... View more
08-27-2024
07:29 PM
|
3
|
0
|
582
|
|
IDEA
|
Out of curiosity, does the icon change when a view gets registered with the geodatabase via the Register with Geodatabase geoprocessing tool? A set of icons for unregistered spatial and non spatial views? A different set of icons for registered spatial and non spatial views?
... View more
08-27-2024
06:51 PM
|
0
|
0
|
1281
|
|
IDEA
|
@JustinH mentioned a querying/join requirement in 1:M Join to Pull feature with Specific Attribute information:
I pull all of the data from an AGOL Feature Service that our organization is hosting.
It took several awkward geoprocessing steps to achieve the required results. It would have been a lot more efficient to just write a simple SQL query with a LEFT JOIN.
... View more
08-27-2024
06:37 PM
|
4
|
2
|
789
|
|
POST
|
@JustinH mentioned in 1:M Join to Pull feature with Specific Attribute information: I pull all of the data from an AGOL Feature Service that our organization is hosting. What SQL dialect is used in SQL expressions on AGOL Feature Service data? Definition query Select by Attributes Any other SQL expressions in geoprocessing tools
... View more
08-27-2024
06:27 PM
|
0
|
2
|
1104
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-20-2026 02:12 PM | |
| 1 | 03-19-2026 11:42 AM | |
| 1 | 06-03-2026 04:02 AM | |
| 1 | 03-18-2026 07:08 PM | |
| 2 | 4 weeks ago |