<?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>topic Re: How to handle a joined field? in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/how-to-handle-a-joined-field/m-p/329739#M25653</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;arcpy.AddJoin() This requires you to make a feature layer of your base table. the joined table doesnt need to be a feature layer or table view&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.CopyFeatures() This will copy your feature layer that you just joined to to a shp.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Nov 2010 15:01:19 GMT</pubDate>
    <dc:creator>ChrisMathers</dc:creator>
    <dc:date>2010-11-23T15:01:19Z</dc:date>
    <item>
      <title>How to handle a joined field?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-handle-a-joined-field/m-p/329736#M25650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi everybody,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I apologize if my question sounds stupid to many of you, but I am really a beginner with both Python and ArcGIS.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Following the suggestion given by Donovan Cameron in &lt;/SPAN&gt;&lt;A href="http://forums.esri.com/Thread.asp?c=93&amp;amp;f=987&amp;amp;t=282764&amp;amp;mc=8"&gt;this thread&lt;/A&gt;&lt;SPAN&gt;, I JOINED my polygon attribute table with an another one (i.e. Sum_Output.dbf). So now I have some fields in my polygon attribute table that are the result of this JOIN operation. One example is the OID field. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now, here comes the Python question/problem, it seems that I can't&amp;nbsp; access none of those joined fields (e.g. OID) with cursors, because those fields don't actually belong to my polygon attribute table.&amp;nbsp; Is there a way to "copy"&amp;nbsp; the joined fields as they appear to my actual polygon attribute table?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you in advance for your help!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Nov 2010 02:02:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-handle-a-joined-field/m-p/329736#M25650</guid>
      <dc:creator>GeorgeAzzari</dc:creator>
      <dc:date>2010-11-23T02:02:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to handle a joined field?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-handle-a-joined-field/m-p/329737#M25651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Once the join is performed in ArcMap, right click the joined layer and go down to Data -&amp;gt; Export&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In arcmap, when a join is performed, it is only in-memory so-to-speak. The join will only exist inside the map document it was performed on.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Exporting using the step above will make the join permanent with the joined fields now part of the attribute table. Note that this does create a new feature class/shapefile (or duplicate depending on how your workflow is currently being defined) so perhaps the old layer could be considered residual and be safe for the trashbin?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In earlier versions of arc, I remember seeing that these &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;temp &lt;/SPAN&gt;&lt;SPAN&gt;fields were denoted with an Asterix * attached to the columns header. I think now, they are expressed more in a SQL/pythonic manner, example: &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;layername.FieldName&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;That formatting of the attribute header will disappear when the join has become permanent.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Nov 2010 02:27:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-handle-a-joined-field/m-p/329737#M25651</guid>
      <dc:creator>DonovanCameron</dc:creator>
      <dc:date>2010-11-23T02:27:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to handle a joined field?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-handle-a-joined-field/m-p/329738#M25652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Can anyone describe how a "join" and "data -&amp;gt; Export" would be accomplished using python code?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Nov 2010 14:22:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-handle-a-joined-field/m-p/329738#M25652</guid>
      <dc:creator>toddsams</dc:creator>
      <dc:date>2010-11-23T14:22:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to handle a joined field?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-handle-a-joined-field/m-p/329739#M25653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;arcpy.AddJoin() This requires you to make a feature layer of your base table. the joined table doesnt need to be a feature layer or table view&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.CopyFeatures() This will copy your feature layer that you just joined to to a shp.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Nov 2010 15:01:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-handle-a-joined-field/m-p/329739#M25653</guid>
      <dc:creator>ChrisMathers</dc:creator>
      <dc:date>2010-11-23T15:01:19Z</dc:date>
    </item>
  </channel>
</rss>

