Join to table with definition query — column name should get prefixed with table name (SQL expression with subquery)

1074
6
12-12-2022 07:33 AM
Status: Closed
Labels (1)
Bud
by
Notable Contributor

ArcGIS Pro 3.0.3; mobile geodatabase.


I have a definition query on a standalone table:

OBJECTID IN (3, 5, 11)

In a FC, I create a join to the table with the definition query (join: ASSET_ID=ASSET_ID). The definition query gets applied to the joined FC, and the OBJECTID gets automatically prefixed with the table name:

main.RoadInspTable.OBJECTID IN (3, 5, 11)

That works as expected.

 

Next, I do the same thing, but this time using a more complex definition query, one that has a subquery:

objectid IN (
     SELECT objectid
       FROM roadinsptable r2
      WHERE r2.asset_id = roadinsptable.asset_id
   ORDER BY date_ DESC, condition DESC
      LIMIT 1
            )

Use case for the complex definition query: https://community.esri.com/t5/arcgis-pro-ideas/one-to-first-joins-control-what-related-record-is/idc...

 

When I go to create the join, I use the Validate Join tool first. The join is valid.

But when I create the join, it fails:

Failed to refresh table. 
Error:
Underlying DBMS error [ambiguous column name:
objectid] [Roads][STATE_ID = 0]

Bud_0-1670858426159.png

The problem is: ArcGIS Pro hasn't given OBJECTID a prefix in the joined FC's definition query.

How it is:

objectid IN (
     SELECT objectid
       FROM roadinsptable r2
      WHERE r2.asset_id = roadinsptable.asset_id
   ORDER BY date_ DESC, condition DESC
      LIMIT 1
            )

How it should be:

roadinsptable.objectid IN (
     SELECT objectid
       FROM roadinsptable r2
      WHERE r2.asset_id = roadinsptable.asset_id
   ORDER BY date_ DESC, condition DESC
      LIMIT 1
            )

If I manually add the prefix to the joined FC's definition query, then it works as expected. The error goes away.

But it took some time to figure out why that was happening.

 

Since prefixes already get added to columns in simple definition queries, could the same thing happen for more complex definition queries? (ones with subqueries like above)

That would avoid some headache.

Thanks.

 

 

 

6 Comments
SSWoodward

Thanks for bringing this to our attention @Bud 

I can reproduce your error, and after some discussion with the team, have decided this would be better marked with the Geoprocessing label.  I've changed it and brought it to the attention of the correct team. 

Thanks Again.

Bud
by

Screen recording video (ignore the video title; this video demonstrates multiple issues; I used it in multiple posts):

Bud
by

Esri Canada Case #03258894
ArcGIS Pro 3.0.3 — Validate Join passes, but resulting join has error

BUG-000155819: Attribute table of joined layer in Mobile Geodatabase does not open when a definition query with a subquery is applied to the join table.

...The join will only determine if the join is valid, which in this case it is. There are matching records in both the input table and the join table. Ultimately the issue is with the attribute table itself. There is some misconfiguration in either the way Pro is sending the subquery nested within the join query or the way the database is interpreting the subquery.

Bud
by

@KoryKramer Feel free to close, since support confirmed this is a bug.

KoryKramer
Status changed to: Closed

Closed as a bug. Users experiencing this issue can follow https://support.esri.com/en-us/bug/the-attribute-table-of-a-joined-layer-in-a-mobile-geoda-bug-00015... for status updates.

Bud
by