<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>idea Update Joins with data updates in ArcGIS Pro Ideas</title>
    <link>https://community.esri.com/t5/arcgis-pro-ideas/update-joins-with-data-updates/idi-p/946293</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Updating mxd documets that drive web services in and enterprise environment can be hard to manage sometimes. &amp;nbsp;At 10, updating of data sources became easier with the use of pyton. &amp;nbsp;However, if the mxd is built using stand alone tables joined to layers, those joins do not and cannot be easily updated when data sources change.&amp;nbsp;&amp;nbsp;This is especially troublesome for users in a multi-tiered environment where the mxds and services need to move from test to staging to production with data source updates at each move.&amp;nbsp;&amp;nbsp;Now, the joins do not get updated with the data source change and the mxd needs to be manually updated (join removed and recreated) which requires work and introduces the chance of errors being introduced in the change.

&lt;!-- content transformation source ID: 087300000008KNv --&gt;

&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Feb 2011 15:24:29 GMT</pubDate>
    <dc:creator>MarkLecher2</dc:creator>
    <dc:date>2011-02-24T15:24:29Z</dc:date>
    <item>
      <title>Update Joins with data updates</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/update-joins-with-data-updates/idi-p/946293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Updating mxd documets that drive web services in and enterprise environment can be hard to manage sometimes. &amp;nbsp;At 10, updating of data sources became easier with the use of pyton. &amp;nbsp;However, if the mxd is built using stand alone tables joined to layers, those joins do not and cannot be easily updated when data sources change.&amp;nbsp;&amp;nbsp;This is especially troublesome for users in a multi-tiered environment where the mxds and services need to move from test to staging to production with data source updates at each move.&amp;nbsp;&amp;nbsp;Now, the joins do not get updated with the data source change and the mxd needs to be manually updated (join removed and recreated) which requires work and introduces the chance of errors being introduced in the change.

&lt;!-- content transformation source ID: 087300000008KNv --&gt;

&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 15:24:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/update-joins-with-data-updates/idi-p/946293</guid>
      <dc:creator>MarkLecher2</dc:creator>
      <dc:date>2011-02-24T15:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: Update Joins with data updates</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/update-joins-with-data-updates/idc-p/946294#M6356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for posting the idea. One thought I had was if you replaced the data source through python could you then recreate the join as well using the Add Join tool? This might help automate the process of changing data sources and recreating the join.&lt;/P&gt;

&lt;!-- content transformation source ID: 00a30000009cYgR --&gt;

&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Feb 2011 00:50:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/update-joins-with-data-updates/idc-p/946294#M6356</guid>
      <dc:creator>ChrisFox</dc:creator>
      <dc:date>2011-02-25T00:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: Update Joins with data updates</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/update-joins-with-data-updates/idc-p/946295#M6357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;What if ArcGIS did it automatically, without any user intervention? No python, no programming, just a simple click and the application does it by itself. Updates everything what is needed when the data sources change - joins, symbology, definition query, labels etc. I know, I know, it would be probably too much comfort for the user when it is possible to do it manually, one by one, like everything else in ESRI's applications &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; &lt;BR /&gt;No intelligence, no intuitiveness, no interactivity, just pure unconsciousness.

&lt;!-- content transformation source ID: 00a30000009cZNu --&gt;

&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Feb 2011 08:20:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/update-joins-with-data-updates/idc-p/946295#M6357</guid>
      <dc:creator>JurajKrumpolec</dc:creator>
      <dc:date>2011-02-25T08:20:28Z</dc:date>
    </item>
    <item>
      <title>Re: Update Joins with data updates</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/update-joins-with-data-updates/idc-p/946296#M6358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;@mlecher If I am understanding you correctly you are wanting to update an mxd's layer and joined tables with new data sources as you move from staging to production for example. The findAndReplaceWorkspacePaths should accomplish this. For example let's say all my layer's data sources and tables are in the workspace, "C:\mytest\testing.gdb" and I want to update the source to E:\Production\Production.gdb. I could use the following lines of code to make the change in Python.&lt;BR /&gt;&lt;BR /&gt;import arcpy&lt;BR /&gt;mxd = arcpy.mapping.MapDocument(r"C:\myMXD.mxd")&lt;BR /&gt;mxd.findAndReplaceWorkspacePaths(r"C:\mytest\testing.gdb", r"E:\Production\Production.gdb")&lt;BR /&gt;mxd.save()&lt;BR /&gt;del mxd&lt;BR /&gt;&lt;BR /&gt;Not only would the layers update to the new data source, but the stand-alone tables joined to those layers would update to the new data source. If you have tried this and are not getting the same results could you verify you are at service pack 1. If I am not understanding your workflow correctly could you write back with more details on your specific scenario.

&lt;!-- content transformation source ID: 00a30000009cdj7 --&gt;

&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Feb 2011 22:25:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/update-joins-with-data-updates/idc-p/946296#M6358</guid>
      <dc:creator>ChrisFox</dc:creator>
      <dc:date>2011-02-25T22:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: Update Joins with data updates</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/update-joins-with-data-updates/idc-p/946297#M6359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Our big problem with this is that it is rare for tables to be in the same workspace as the feature classes to which they are joined. This is almost inherent in the usefulness of joins: if the tables were in the same workspace, wouldn't that probably imply that you "owned" or maintained the tables as well as the feature classes? In that case, you would probably just permanently extend the feature classes with the table attributes and delete the tables.&lt;BR /&gt;&lt;BR /&gt;But in fact, usually we are joining because we own and maintain the feature classes but do not own and maintain the tables to which we are joining. (Simple example: a feature class of bike lanes, related by a key to a road feature class maintained by a separate agency.)&lt;BR /&gt;&lt;BR /&gt;The original announcement of the arcpy.mapping module explicitly noted that joined tables in different workspaces from the feature class on the left of the join would &lt;STRONG&gt;not&lt;/STRONG&gt; be changed by the functions of the module. I can't find any note about this in the current documentation. Is this something that was addressed in Service Pack 1?&lt;BR /&gt;

&lt;!-- content transformation source ID: 00a30000009daY8 --&gt;

&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Mar 2011 16:04:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/update-joins-with-data-updates/idc-p/946297#M6359</guid>
      <dc:creator>DavidKnudsen</dc:creator>
      <dc:date>2011-03-09T16:04:07Z</dc:date>
    </item>
    <item>
      <title>Re: Update Joins with data updates</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/update-joins-with-data-updates/idc-p/946298#M6360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;So if I understand you correctly you have a join to a table in a different workspace then the feature class and you want to change the path of the feature class for a layer in the map document but keep the path to the joined table? If this is the case I am finding that this is the behavior at 10 service pack 1. I haven't tested at 10 without service pack 1 and I did a search for known-issues and didn't find any specific to this scenario, but it may be possible it was resolved at service pack 1. Are you finding that the join is being removed when you do this?

&lt;!-- content transformation source ID: 00a30000009djqG --&gt;

&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Mar 2011 23:35:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/update-joins-with-data-updates/idc-p/946298#M6360</guid>
      <dc:creator>ChrisFox</dc:creator>
      <dc:date>2011-03-10T23:35:50Z</dc:date>
    </item>
    <item>
      <title>Re: Update Joins with data updates</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/update-joins-with-data-updates/idc-p/946299#M6361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;@Chris_Fox Sorry I missed your reply. I think in the case I was talking about, both the location of the feature class and the location of the table change. For example&lt;BR /&gt;&lt;BR /&gt;\\old_server\share\internally_owned_data.fgdb\featureclass and&lt;BR /&gt;\\old_server\share\externally_supplied_data.mdb\table&lt;BR /&gt;&lt;BR /&gt;both move to a new server, remaining in separate workspaces:&lt;BR /&gt;&lt;BR /&gt;\\new_server\share\internally_owned_data.fgdb\featureclass and&lt;BR /&gt;\\new_server\share\externally_supplied_data.mdb\table.&lt;BR /&gt;&lt;BR /&gt;This thread is old now, but my recollection is that the only way the source of a table on the right side of a join could be updated was if it shared the tablespace of the featureclass it was joined to; it would be updated at the same time that the source of the featureclass was fixed. Otherwise there was no direct way to access and change the source of a joined table. I don't know if my interpretation of the documentation was correct on that score and if it still holds, if so.

&lt;!-- content transformation source ID: 00aE0000000VMFX --&gt;

&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2012 14:06:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/update-joins-with-data-updates/idc-p/946299#M6361</guid>
      <dc:creator>DavidKnudsen</dc:creator>
      <dc:date>2012-07-17T14:06:39Z</dc:date>
    </item>
    <item>
      <title>Re: Update Joins with data updates</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/update-joins-with-data-updates/idc-p/946300#M6362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I see this is a bit old. Is there a newer thread related to this topic?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to find a find a simple method to update a feature class created from a joined table. The table will updated periodically, and I want to capture that without creating a new feature class every time. Ultimately, it will be used to create a hosted feature class used in dashboards, web apps, etc. Are there any standard workflows for this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jul 2020 14:43:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/update-joins-with-data-updates/idc-p/946300#M6362</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2020-07-07T14:43:05Z</dc:date>
    </item>
    <item>
      <title>Re: Update Joins with data updates</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/update-joins-with-data-updates/idc-p/1559213#M32905</link>
      <description>&lt;P&gt;I am using Pro 2.9.1 and this is still not possible the change a feature class dataSource without removing the joins before.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 16:09:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/update-joins-with-data-updates/idc-p/1559213#M32905</guid>
      <dc:creator>MaximeDemers</dc:creator>
      <dc:date>2024-11-15T16:09:48Z</dc:date>
    </item>
    <item>
      <title>Re: Update Joins with data updates</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/update-joins-with-data-updates/idc-p/1569965#M33258</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/118250"&gt;@MaximeDemers&lt;/a&gt;&amp;nbsp;Joins and relates are fundamental to databases and GIS. It's so frustrating that we can't update these file paths in ArcGIS Pro (I'm using 3.3 and can't figure out a way to do it)&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2024 20:57:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/update-joins-with-data-updates/idc-p/1569965#M33258</guid>
      <dc:creator>Wayne_Rennick</dc:creator>
      <dc:date>2024-12-18T20:57:14Z</dc:date>
    </item>
  </channel>
</rss>

