<?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: Remove join in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/remove-join/m-p/223613#M17290</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; &lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.JoinField_management (inlayer, joinField, tempfcnome, joinField, fieldList) # tempfcnome
&amp;nbsp;&amp;nbsp;&amp;nbsp; -- snip --&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.RemoveJoin_management (inlayer,&amp;nbsp; tempfcnome) &lt;SPAN style="color:red;"&gt;# will not work!&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[post=226407]Caleb[/post] is correct. &lt;/SPAN&gt;&lt;BR /&gt;&lt;UL&gt;&lt;BR /&gt;&lt;LI&gt;Add Join creates a temporary join that can be removed with Remove Join.&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Join Field does a permanent join, i.e. it copies over fields permanently from one table to another based an a join field match. You can't Remove Join to undo an Join Field operation -- it's permanent. &lt;/LI&gt;&lt;BR /&gt;A nice feature of Join Field is you can specify a subset of fields to copy over, say, just the one you're interested in.&lt;BR /&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 10:53:21 GMT</pubDate>
    <dc:creator>curtvprice</dc:creator>
    <dc:date>2021-12-11T10:53:21Z</dc:date>
    <item>
      <title>Remove join</title>
      <link>https://community.esri.com/t5/python-questions/remove-join/m-p/223605#M17282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm having a problem removing a join with python code (ArcGIS 10.0). &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;With a python script I'm doing a spatial SORT for a number of polygons which fall within a certain number of regions. Within a function I do the following:&lt;/SPAN&gt;&lt;BR /&gt;&lt;UL&gt;&lt;BR /&gt;&lt;LI&gt;Create a temporary featureclass as result from the Spatial sort&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Put the value of the ObjectID in a new field &lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Add a join between the input layer and the temporary FC&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Calculate the value of the sorted objected for the input FC&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Remove the join &lt;/LI&gt;&lt;BR /&gt;&lt;/UL&gt;&lt;BR /&gt;&lt;SPAN&gt;This is the code of the python function.&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;def spatialsort (inlayer, outfc, nutsvalue):
&amp;nbsp;&amp;nbsp;&amp;nbsp; # (temp FC, spatial sort, add field, calc OID, atribuir valor join, ...)
&amp;nbsp;&amp;nbsp;&amp;nbsp; # temp fc Nome
&amp;nbsp;&amp;nbsp;&amp;nbsp; tempfcnome = tempfd + "\\SORT" + nutsvalue
&amp;nbsp;&amp;nbsp;&amp;nbsp; tempfcnome2 = "SORT" + nutsvalue
&amp;nbsp;&amp;nbsp;&amp;nbsp; if gp.Exists(tempfcnome):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.Delete_management(tempfcnome, "")

&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.Sort_management(inlayer, tempfcnome, "SHAPE ASCENDING", "PEANO")

&amp;nbsp;&amp;nbsp;&amp;nbsp; # Adicionar campo SORT
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.AddField_management(tempfcnome, "SORT_TEMP_ID", "LONG", 6)

&amp;nbsp;&amp;nbsp;&amp;nbsp; # Calcular campo
&amp;nbsp;&amp;nbsp;&amp;nbsp; # nao seria necessario pode fazer o calculate a partir OBJECTID original
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.CalculateField_management(tempfcnome, "SORT_TEMP_ID", "!OBJECTID!","PYTHON")

&amp;nbsp;&amp;nbsp;&amp;nbsp; # Adicionar Join
&amp;nbsp;&amp;nbsp;&amp;nbsp; joinField = "GRD_NEWID"
&amp;nbsp;&amp;nbsp;&amp;nbsp; fieldList = ["SORT_TEMP_ID"] # OBJECTID

&amp;nbsp;&amp;nbsp;&amp;nbsp; # criar table view (alternative to using featurelayer):
&amp;nbsp;&amp;nbsp;&amp;nbsp; theDesc = gp.Describe(inlayer)
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.MakeTableView_management (theDesc.catalogPath, "temptableview")
&amp;nbsp;&amp;nbsp;&amp;nbsp; theDesc = gp.Describe(tempfcnome)
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.MakeTableView_management (theDesc.catalogPath, "temptableview2")
&amp;nbsp;&amp;nbsp;&amp;nbsp; 

&amp;nbsp;&amp;nbsp;&amp;nbsp; # Using tableviews
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.JoinField_management ("temptableview", joinField, "temptableview2", joinField, fieldList) # tempfcnome&lt;/PRE&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Everything works fine except the last step. I tried to remove the join using as input:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Using the fullname of the layer:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[INDENT]arcgisscripting.ExecuteError: Failed to execute. Parameters are not valid. The value cannot be a feature class[/INDENT]Using only the basename:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[INDENT]ERROR 000732: Layer Name or Table View: Dataset TEST2_GRID_1KM_CONT does not exist or is not supported[/INDENT]Using the name of layer (this case gridlayer):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[INDENT]arcgisscripting.ExecuteError: ERROR 000229: Cannot open gridlayer[/INDENT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Using tableviews as input, error:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[INDENT]&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.RemoveJoin_management ("temptableview",&amp;nbsp; "temptableview2")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcgisscripting.ExecuteError: ERROR 000229: Cannot open temptableview[/INDENT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I checked the following topic &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/13163-arcgis-10-is-there-a-way-to-remove-all-joins-with-python" rel="nofollow noopener noreferrer" target="_blank"&gt;http://forums.arcgis.com/threads/13163-arcgis-10-is-there-a-way-to-remove-all-joins-with-python&lt;/A&gt;&lt;SPAN&gt;, but this didn�??t offer any solution.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Does anyone knows what I�??m doing wrong? Any suggestions for alternative ways?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Bart Schoenmakers&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 10:53:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/remove-join/m-p/223605#M17282</guid>
      <dc:creator>Bart-JanSchoenmakers</dc:creator>
      <dc:date>2021-12-11T10:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: Remove join</title>
      <link>https://community.esri.com/t5/python-questions/remove-join/m-p/223606#M17283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I don't see the Add Join or Remove Join tools in your code, did you leave that out?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Maybe this is your issue: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Join Field it does not create a join (so you can't remove one after it runs). The tool that does a tempary join (which is what you are describing in your question) is Add Join.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Join Field permanently copies data -- join/add field,calculate across/remove join in one step.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2012 15:44:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/remove-join/m-p/223606#M17283</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2012-08-20T15:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: Remove join</title>
      <link>https://community.esri.com/t5/python-questions/remove-join/m-p/223607#M17284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Curtis for checking this thread. It seems I didn�??t copy well my code. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here are the 2 ways I tried to make a join and remove a join, using table views as input and using the layer objects.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I hope you see what kind of coding error I made.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Bart&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Without table views:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp; # Without tableviews:
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.JoinField_management (inlayer, joinField, tempfcnome, joinField, fieldList) # tempfcnome
&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Calcular output campos laygrid
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.CalculateField_management(inlayer, nuts3field, nutsvalue,"PYTHON") # inlayer
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.CalculateField_management(inlayer, "SORT_ID", "!SORT_TEMP_ID!","PYTHON")

&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.RemoveJoin_management (inlayer,&amp;nbsp; tempfcnome)&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;With Table views:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp; # Using tableviews
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.JoinField_management ("temptableview", joinField, "temptableview2", joinField, fieldList) # tempfcnome
&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Calcular output campos laygrid
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.CalculateField_management("temptableview", nuts3field, nutsvalue,"PYTHON") # inlayer
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.CalculateField_management("temptableview", "SORT_ID", "!SORT_TEMP_ID!","PYTHON")

&amp;nbsp;&amp;nbsp;&amp;nbsp; theDesc = gp.Describe("temptableview")
&amp;nbsp;&amp;nbsp;&amp;nbsp; theDesc2 = gp.Describe("temptableview2")
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.RemoveJoin_management (theDesc.catalogPath,&amp;nbsp; theDesc2.catalogPath)

&amp;nbsp;&amp;nbsp;&amp;nbsp; # remove tableviews
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.Delete_management("temptableview")
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.Delete_management("temptableview2")&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 10:53:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/remove-join/m-p/223607#M17284</guid>
      <dc:creator>Bart-JanSchoenmakers</dc:creator>
      <dc:date>2021-12-11T10:53:16Z</dc:date>
    </item>
    <item>
      <title>Re: Remove join</title>
      <link>https://community.esri.com/t5/python-questions/remove-join/m-p/223608#M17285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I think that you are not passing the name of the join correctly.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//001700000066000000"&gt;http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//001700000066000000&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;RemoveJoin_management(in_layer_or_view, {join_name})&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here the the join_name appears to be optional, have you tried without specifying the join_name like this;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.RemoveJoin_management ("temptableview")&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;if that does not work try this;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.RemoveJoin_management ("temptableview", "temptableview2")&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;or instead of catalogPath try using nameString with the Describe.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2012 13:13:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/remove-join/m-p/223608#M17285</guid>
      <dc:creator>KenCarrier</dc:creator>
      <dc:date>2012-08-21T13:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: Remove join</title>
      <link>https://community.esri.com/t5/python-questions/remove-join/m-p/223609#M17286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I tried already several names, like hardcoding the fullname or using the result of Describe (including the path or only the filename). Non of it worked. The example on the helppage looks quite simple. It seems you only need to specify the featureclassnames. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Like you sugested I left out the 2nd argument. It gives a Parameters not valid error. It seems all quite strange this RemoveJoin command. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To get my script working I'm now leaving out a join at the end and doing it afterwards manually. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Bart&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2012 15:32:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/remove-join/m-p/223609#M17286</guid>
      <dc:creator>Bart-JanSchoenmakers</dc:creator>
      <dc:date>2012-08-21T15:32:27Z</dc:date>
    </item>
    <item>
      <title>Re: Remove join</title>
      <link>https://community.esri.com/t5/python-questions/remove-join/m-p/223610#M17287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Curious are you running this inside arcmap or as a standalone script.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The error you are getting seems like the object being passed is incorrect.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In your function I noticed you have an inlayer variable you accept, have you tried passing inlayer to the RemoveJoin tool?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2012 16:02:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/remove-join/m-p/223610#M17287</guid>
      <dc:creator>KenCarrier</dc:creator>
      <dc:date>2012-08-21T16:02:00Z</dc:date>
    </item>
    <item>
      <title>Re: Remove join</title>
      <link>https://community.esri.com/t5/python-questions/remove-join/m-p/223611#M17288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm using the script as standalone script. I might try running it from ArcCatalog, it could be that ArcGIS interprets the objects differently. Best is to create a new script testing the problem, leaving out all the other code. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried passing several variables to the removejoin function, also hardcoding the tablenames used for the join. always the same result.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2012 09:17:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/remove-join/m-p/223611#M17288</guid>
      <dc:creator>Bart-JanSchoenmakers</dc:creator>
      <dc:date>2012-08-22T09:17:42Z</dc:date>
    </item>
    <item>
      <title>Re: Remove join</title>
      <link>https://community.esri.com/t5/python-questions/remove-join/m-p/223612#M17289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Does it work with Add Join rather than using the join field? I believe the Join Field function creates a permanent join, but it seems like you only need a temporary join so the add join may be the better way to go. I don't know that it will make a difference but could be worth a shot.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
gp.AddJoin_management ("temptableview", joinField, "temptableview2", joinField, fieldList)
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 10:53:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/remove-join/m-p/223612#M17289</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-12-11T10:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: Remove join</title>
      <link>https://community.esri.com/t5/python-questions/remove-join/m-p/223613#M17290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; &lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.JoinField_management (inlayer, joinField, tempfcnome, joinField, fieldList) # tempfcnome
&amp;nbsp;&amp;nbsp;&amp;nbsp; -- snip --&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.RemoveJoin_management (inlayer,&amp;nbsp; tempfcnome) &lt;SPAN style="color:red;"&gt;# will not work!&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[post=226407]Caleb[/post] is correct. &lt;/SPAN&gt;&lt;BR /&gt;&lt;UL&gt;&lt;BR /&gt;&lt;LI&gt;Add Join creates a temporary join that can be removed with Remove Join.&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Join Field does a permanent join, i.e. it copies over fields permanently from one table to another based an a join field match. You can't Remove Join to undo an Join Field operation -- it's permanent. &lt;/LI&gt;&lt;BR /&gt;A nice feature of Join Field is you can specify a subset of fields to copy over, say, just the one you're interested in.&lt;BR /&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 10:53:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/remove-join/m-p/223613#M17290</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2021-12-11T10:53:21Z</dc:date>
    </item>
    <item>
      <title>Re: Remove join</title>
      <link>https://community.esri.com/t5/python-questions/remove-join/m-p/223614#M17291</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Caleb for the answer. It works using the AddJoin command. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The following code works for me:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;gp.AddJoin_management (layjoin, joinField, tempfcnome, joinField)
# Removing join:
 theDesc = gp.Describe(tempfcnome)
 gp.RemoveJoin_management (layjoin, theDesc.Name)&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Bart&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 10:53:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/remove-join/m-p/223614#M17291</guid>
      <dc:creator>Bart-JanSchoenmakers</dc:creator>
      <dc:date>2021-12-11T10:53:24Z</dc:date>
    </item>
    <item>
      <title>Re: Remove join</title>
      <link>https://community.esri.com/t5/python-questions/remove-join/m-p/223615#M17292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Solid information&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2017 19:46:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/remove-join/m-p/223615#M17292</guid>
      <dc:creator>BrendanBladdickEsri</dc:creator>
      <dc:date>2017-09-08T19:46:42Z</dc:date>
    </item>
  </channel>
</rss>

