|
POST
|
Regarding this post: Our Thanks to Esri Community MVPs I had commented on that post when it was first published (3 weeks ago). So I was automatically subscribed to it, which is expected. Shortly after, I noticed there were a lot of people replying, which was clogging up my notifications page. So I unsubscribed from the post. Bud_0-1674629806752.png But I still get notifications: Bud_1-1674629962751.png Question: Why do I still get notifications, despite being unsubscribed? Thanks.
... View more
01-24-2023
11:01 PM
|
0
|
3
|
1457
|
|
IDEA
|
On closer inspection, it looks like ArcGIS Pro is having difficulty with the geodatabases in that particular folder. For example, it's only showing one of two file geodatabases, which is incorrect. To prove the point, I created a new folder with a new mobile geodatabase. ArcGIS Pro is able to see that mobile geodatabase without issue (and export the table): Bud_1-1674626993864.png So something else is going on. Esri, feel free to delete this idea.
... View more
01-24-2023
10:11 PM
|
0
|
0
|
928
|
|
IDEA
|
@KoryKramer Would you mind deleting this idea? I have a standalone table in a ArcGIS Pro 3.0.3 mobile geodatabase. Using the Export Table GP tool, I want to export the table to either: A) the same mobile geodatabase or, B) a different mobile geodatabase But when using that tool, when browsing to the folder that has my mobile geodatabases, the mobile geodatabases aren't listed. Bud_0-1674626161470.png So that tells me it's not currently possible to export tables to mobile geodatabases. Restarting ArcGIS Pro doesn't help. Could that functionality be added? Thanks.
... View more
01-24-2023
09:59 PM
|
0
|
2
|
955
|
|
IDEA
|
@HannesZiegler Yes, I think this is right: Or are you looking for a similar property, but for accessing and manipulating the actual curve information rather than just confirming its existence? In hindsight, my wording wasn't great.
... View more
01-24-2023
11:17 AM
|
0
|
0
|
4338
|
|
IDEA
|
Thanks @KoryKramer. The use case stems from this scenario: One-to-many join - editing duplicate input table rows. Essentially, after every cell edit, the other duplicated rows become out of date, which is confusing to look at. I'd rather refresh regularly so that I'm seeing up-to-date data.
... View more
01-24-2023
08:55 AM
|
0
|
0
|
1426
|
|
IDEA
|
@KoryKramer Are either of you seeing a scenario where the table Refresh is not available when you are not editing? I suppose not. Why not make the refresh button available all the time, even when editing a cell? If we were to hit the refresh button when editing a cell, then it could save & refresh all in one action. That would avoid the need for an extra click (clicking away from the edited cell to stop editing).
... View more
01-24-2023
08:35 AM
|
0
|
0
|
1431
|
|
POST
|
@JoshuaBixby Good idea. I took an extreme approach by removing all indentations and line breaks: WITH RECURSIVE cte AS (SELECT 2023 AS year_ UNION ALL SELECT year_ + 1 FROM cte WHERE year_ < 2023 + (10) -1) SELECT row_number() over (ORDER BY cte.year_, amount) as OBJECTID, cte.year_, p.amount FROM cte LEFT JOIN Projects_MobileGDB p ON cte.year_ = p.year_ Unfortunately, I'm still seeing the same issue. The name gets cleared when I paste in the SQL.
... View more
01-24-2023
07:38 AM
|
0
|
0
|
2001
|
|
IDEA
|
It doesn't seem to be possible to create a chart on a mobile geodatabase view. Example here: https://community.esri.com/t5/arcgis-pro-questions/force-bar-chart-to-show-missing-years-within-10/m-p/1250755/highlight/true#M64552 Could that functionality be added? Thanks. ArcGIS Pro 3.0.3 Edit: BUG-000155377: ArcGIS Pro: Unable to create a bar chart on a database view created in a mobile geodatabase. “One thing I noticed is that other charts (ex: Line and Scatter Plot charts) work fine. So the issue is mainly with Bar charts.” Esri Canada Case #03249403
... View more
01-24-2023
05:18 AM
|
0
|
4
|
1589
|
|
POST
|
For what it's worth, I tried copying the table to a mobile geodatabase (since mobile geodatabases have full SQL support, unlike file geodatabases). Then I created a view that dynamically generates filler rows for the missing years: WITH RECURSIVE cte AS ( SELECT 2023 AS year_ UNION ALL SELECT year_ + 1 FROM cte WHERE year_ < 2023 + (10) -1 ) SELECT row_number() over (ORDER BY cte.year_, amount) as OBJECTID, cte.year_, p.amount FROM cte LEFT JOIN Projects_MobileGDB p ON cte.year_ = p.year_ I was able to successfully create the view. And even add the view to the map. The filler rows were viewable in the attribute table, as expected. But I wasn't able to create a chart from the view. I'm not sure why. I used the same steps that I used for the table's chart, but when I did it for the view, a chart wasn't shown in the chart window. Instead, this message was shown: "No data is available to display due to empty data field(s) and/or combination filters." So I wasn't able to get the view idea working. Idea: Create chart on mobile geodatabase view Here's the SQL source: SQLite Oracle (untested) SQL Server (untested) PostgreSQL (untested) Edit #1: I tried creating a simpler view: SELECT * FROM TABLE. But I wasn't able to create a chart on that view either. Edit #2: BUG-000155377: ArcGIS Pro: Unable to create a bar chart on a database view created in a mobile geodatabase. “One thing i noticed is that other charts (ex: Line and Scatter Plot charts) work fine. So the issue is mainly with Bar charts.” Esri Canada Case #03249403 Edit #3: Idea: Bar Chart — Set min/max x-axis bounds using calculated values; fill in gaps with empty bars
... View more
01-24-2023
05:14 AM
|
0
|
0
|
3503
|
|
POST
|
I have a standalone file geodatabase table called Projects. I've created a bar chart from the table. Bud_0-1674557915516.png That works, but I need bars in the bar chart for each year within a range: system year + 9. In other words, I want bars for 10 years, starting with the current year (currently 2023). So I need to force ArcGIS Pro to show empty bars for 2023, 2030, and 2032. It would look like this: Bud_3-1674565295757.png I mocked that up by manually adding filler rows to the table (not the desired solution): Bud_2-1674565098770.png Question: Is there a way to dynamically force the bar chart to show the missing years? (10-year range: system year + 9) Thanks. ArcGIS Pro 3.0.3
... View more
01-24-2023
05:03 AM
|
0
|
3
|
3520
|
|
IDEA
|
ArcGIS Pro 3.0.3: It would be helpful if we could copy/paste mobile geodatabase views as tables -- in the same GDB, from within Catalog. Currently, it doesn't work that way. We get an error that the object already exists. I assume Pro is trying to paste the view as another view with the same name, not as a table. Copy-paste mobile geodatabase view.gif Whereas, with other geodatabase types like file and enterprise geodatabases, copy/pasting a view within the same GDB produces an exported table. Could Pro be changed so that copy/pasting a view in the same GDB produces a table? I'm aware there are other ways to export views to tables. But the copy/paste method in Catalog is preferred, for consistency and convenience sake. And to be honest, exporting using other tools doesn't seem to work for mobile geodatabases anyway. Only file geodatabases get listed when browsing to the view>>table output location. Thanks.
... View more
01-24-2023
04:43 AM
|
0
|
7
|
1914
|
|
IDEA
|
Regarding this scenario: Create view in mobile geodatabase — View name gets cleared when run The steps in that post produce an error: Parameter is missing or invalid Bud_0-1674561140236.png GIF: Create view - pasting SQL clears name.gif Problem: The error message disappears after a couple of seconds. Bud_1-1674561189516.png It would be better if the error message persisted, so that we can carefully read it, take a screen shot, or even copy the error text. Could that behavior be changed? Thanks.
... View more
01-24-2023
03:56 AM
|
1
|
2
|
2347
|
|
POST
|
I'm creating a view in a ArcGIS Pro 3.0.3 mobile geodatabase. I've entered the view name. Now, I'll paste SQL into the View Definition (using CTRL+V, since right-click >> paste is greyed out). Problem: When I run the GP tool, the name that I entered previously gets cleared. That's not the desired behavior. Create view - pasting SQL clears name.gif Bud_1-1674574449527.png WITH RECURSIVE cte AS ( SELECT 2023 AS year_ UNION ALL SELECT year_ + 1 FROM cte WHERE year_ < 2023 + (10) -1 ) SELECT row_number() over (ORDER BY cte.year_, amount) as OBJECTID, cte.year_, p.amount FROM cte LEFT JOIN Projects_MobileGDB p ON cte.year_ = p.year_ Could that issue be fixed?
... View more
01-24-2023
03:48 AM
|
0
|
3
|
2119
|
|
POST
|
Edited: I have a standalone table in an ArcGIS Pro 3.0.3 mobile geodatabase. I've dragged the table from Catalog to the Contents pane: Table in Contents Pane.gif Question: When dragging-and-dropping to the Contents pane, why does the hover-text say "Copy to Projects.gdb"? Bud_3-1674559381300.png If I understand correctly, I'm not copying anything to my other GDB (a file geodatabase). I'm simply adding my mobile geodatabase table to the map. Am I missing something? Thanks.
... View more
01-24-2023
03:27 AM
|
0
|
0
|
824
|
|
IDEA
|
@Luke_Pinner and @Andrew-Bowne Regrading your comments about unversioned enterprise edits not having a discard edits option: It looks like that functionality is planned in a future version of ArcGIS Pro: ArcGIS Pro Roadmap - July 2022 Near-Term (next release or two) Discard for non-versioned editing –support of workflows similar to those implemented in ArcMap for editing non-versioned data. When implemented, edits against non-versioned data will not be written directly to the database, giving the user the ability to discard edits before committing. Related: Pro Roadmap - Non-versioned Editing: “Ability to undo and/or discard edits before committing”
... View more
01-23-2023
11:49 AM
|
0
|
0
|
9375
|
| 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 | 07-08-2026 01:29 PM |