<?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: merge multiple tables with Merge_management? in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/merge-multiple-tables-with-merge-management/m-p/255522#M19630</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Thanx, but I still get an error:&lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Not sure why it won't work for you???&amp;nbsp; I ran it from 2 different environments and it worked fine.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;From where are you running this script?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Aug 2011 14:48:31 GMT</pubDate>
    <dc:creator>RDHarles</dc:creator>
    <dc:date>2011-08-24T14:48:31Z</dc:date>
    <item>
      <title>merge multiple tables with Merge_management?</title>
      <link>https://community.esri.com/t5/python-questions/merge-multiple-tables-with-merge-management/m-p/255515#M19623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can anyone tell me how to merge multiple dbf tables from the same folder into one large dbf table?&amp;nbsp; Let's say I have 5 dbf tables with identical schema in the following folder:&amp;nbsp; "C:\\Data\\Tables".&amp;nbsp; I've tried listing the tables and using that object as the input, but to no avail. I haven't found much help on other forums as well...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This sounds so simple, but for some reason I can't figure it out:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.workspace = "C:\\Data\\Tables"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;tablelist = gp.ListTables("*")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.Merge_management(tablelist, "C:\\Data\\Tables\\merged.dbf")&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for any input.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2011 18:58:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/merge-multiple-tables-with-merge-management/m-p/255515#M19623</guid>
      <dc:creator>leewalston</dc:creator>
      <dc:date>2011-08-23T18:58:22Z</dc:date>
    </item>
    <item>
      <title>Re: merge multiple tables with Merge_management?</title>
      <link>https://community.esri.com/t5/python-questions/merge-multiple-tables-with-merge-management/m-p/255516#M19624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can do it in Arc10:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy, os
arcpy.env.workspace = "c:/junk"
tableList = arcpy.ListTables()
arcpy.Merge_management(tableList, "easy.dbf")&lt;/PRE&gt;&lt;SPAN&gt;In 9.x, it's much more involved.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What version of Arc are you using?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 12:36:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/merge-multiple-tables-with-merge-management/m-p/255516#M19624</guid>
      <dc:creator>RDHarles</dc:creator>
      <dc:date>2021-12-11T12:36:43Z</dc:date>
    </item>
    <item>
      <title>Re: merge multiple tables with Merge_management?</title>
      <link>https://community.esri.com/t5/python-questions/merge-multiple-tables-with-merge-management/m-p/255517#M19625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hallo,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;that is a nice code snippet...I am new to python; how can I make a skript from this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Yours&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Matthias&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Aug 2011 13:06:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/merge-multiple-tables-with-merge-management/m-p/255517#M19625</guid>
      <dc:creator>MatthiasAbele</dc:creator>
      <dc:date>2011-08-24T13:06:35Z</dc:date>
    </item>
    <item>
      <title>Re: merge multiple tables with Merge_management?</title>
      <link>https://community.esri.com/t5/python-questions/merge-multiple-tables-with-merge-management/m-p/255518#M19626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hallo,&lt;BR /&gt;&lt;BR /&gt;that is a nice code snippet...I am new to python; how can I make a skript from this?&lt;BR /&gt;&lt;BR /&gt;Yours&lt;BR /&gt;&lt;BR /&gt;Matthias&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The piece of code above will run as it is.&amp;nbsp; You just need to copy it and save it as a file (e.g. script.py).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;There are many ways/places to run python scripts.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Here's a link that describes one way to do it:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#/A_quick_tour_of_creating_script_tools/001500000006000000/"&gt;http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#/A_quick_tour_of_creating_script_tools/001500000006000000/&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Aug 2011 13:55:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/merge-multiple-tables-with-merge-management/m-p/255518#M19626</guid>
      <dc:creator>RDHarles</dc:creator>
      <dc:date>2011-08-24T13:55:58Z</dc:date>
    </item>
    <item>
      <title>Re: merge multiple tables with Merge_management?</title>
      <link>https://community.esri.com/t5/python-questions/merge-multiple-tables-with-merge-management/m-p/255519#M19627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you, I will read through this...I tried your script with norma (yellow) tables...it was working very nicely; but with dbf tables...it is not working for me.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is the message:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; import arcpy, os
... arcpy.env.workspace = "C:\Users\admin\Desktop"
... tableList = arcpy.ListTables()
... arcpy.Merge_management(tableList, "easy.shp")
... 
Runtime error &amp;lt;class 'arcgisscripting.ExecuteError'&amp;gt;: Failed to execute. Parameters are not valid. ERROR 000732: Input Datasets: Dataset fglr_o_fr_500m_C280_RNW_u_v_vBETRAG_neu_flussschlauch_vg0p0avk0p2_final.dbf;fglr_o_fr_500m_C280_RNW_u_v_vBETRAG_neu_flussschlauch_vg0p2avk0p4_final.dbf;fglr_o_fr_500m_C280_RNW_u_v_vBETRAG_neu_flussschlauch_vg0p4avk0p6_final.dbf;fglr_o_fr_500m_C280_RNW_u_v_vBETRAG_neu_flussschlauch_vg0p6avk0p8_final.dbf;fglr_o_fr_500m_C280_RNW_u_v_vBETRAG_neu_flussschlauch_vg0p8avk1p0_final.dbf;fglr_o_fr_500m_C280_RNW_u_v_vBETRAG_neu_flussschlauch_vg1p0avk1p2_final.dbf;fglr_o_fr_500m_C280_RNW_u_v_vBETRAG_neu_flussschlauch_vg1p2avk1p4_final.dbf;fglr_o_fr_500m_C280_RNW_u_v_vBETRAG_neu_flussschlauch_vg1p4avk1p6_final.dbf;fglr_o_fr_500m_C280_RNW_u_v_vBETRAG_neu_flussschlauch_vg1p6avk9p0_final.dbf does not exist or is not supported Failed to execute (Merge). 
&amp;gt;&amp;gt;&amp;gt; &lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What could be the reason?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanx,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Matthias&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 12:36:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/merge-multiple-tables-with-merge-management/m-p/255519#M19627</guid>
      <dc:creator>MatthiasAbele</dc:creator>
      <dc:date>2021-12-11T12:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: merge multiple tables with Merge_management?</title>
      <link>https://community.esri.com/t5/python-questions/merge-multiple-tables-with-merge-management/m-p/255520#M19628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Thank you, I will read through this...I tried your script with norma (yellow) tables...it was working very nicely; but with dbf tables...it is not working for me.&lt;BR /&gt;&lt;BR /&gt;Here is the message:&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; import arcpy, os
... arcpy.env.workspace = "C:\Users\admin\Desktop"
... tableList = arcpy.ListTables()
... arcpy.Merge_management(tableList, "easy.dbf")
... 
Runtime error &amp;lt;class 'arcgisscripting.ExecuteError'&amp;gt;: Failed to execute. Parameters are not valid. ERROR 000732: Input Datasets: Dataset fglr_o_fr_500m_C280_RNW_u_v_vBETRAG_neu_flussschlauch_vg0p0avk0p2_final.dbf;fglr_o_fr_500m_C280_RNW_u_v_vBETRAG_neu_flussschlauch_vg0p2avk0p4_final.dbf;fglr_o_fr_500m_C280_RNW_u_v_vBETRAG_neu_flussschlauch_vg0p4avk0p6_final.dbf;fglr_o_fr_500m_C280_RNW_u_v_vBETRAG_neu_flussschlauch_vg0p6avk0p8_final.dbf;fglr_o_fr_500m_C280_RNW_u_v_vBETRAG_neu_flussschlauch_vg0p8avk1p0_final.dbf;fglr_o_fr_500m_C280_RNW_u_v_vBETRAG_neu_flussschlauch_vg1p0avk1p2_final.dbf;fglr_o_fr_500m_C280_RNW_u_v_vBETRAG_neu_flussschlauch_vg1p2avk1p4_final.dbf;fglr_o_fr_500m_C280_RNW_u_v_vBETRAG_neu_flussschlauch_vg1p4avk1p6_final.dbf;fglr_o_fr_500m_C280_RNW_u_v_vBETRAG_neu_flussschlauch_vg1p6avk9p0_final.dbf does not exist or is not supported Failed to execute (Merge). 
&amp;gt;&amp;gt;&amp;gt; &lt;/PRE&gt;What could be the reason?&lt;BR /&gt;&lt;BR /&gt;Thanx,&lt;BR /&gt;&lt;BR /&gt;Matthias&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;At first glance, you have your slashes wrong in the workspace path, try this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"C:/Users/admin/Desktop"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also, the output file should either be have a .dbf extension on it (my mistake) or should point to a file geodatabase like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;test.gdb/table&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 12:36:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/merge-multiple-tables-with-merge-management/m-p/255520#M19628</guid>
      <dc:creator>RDHarles</dc:creator>
      <dc:date>2021-12-11T12:36:49Z</dc:date>
    </item>
    <item>
      <title>Re: merge multiple tables with Merge_management?</title>
      <link>https://community.esri.com/t5/python-questions/merge-multiple-tables-with-merge-management/m-p/255521#M19629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanx, but I still get an error:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; import arcpy, os
... arcpy.env.workspace = "C:/Users/admin/Desktop"
... tableList = arcpy.ListTables()
... arcpy.Merge_management(tableList, "easy.dbf")
... 
Runtime error &amp;lt;class 'arcgisscripting.ExecuteError'&amp;gt;: Failed to execute. Parameters are not valid. ERROR 000732: Input Datasets: Dataset fglr_o_fr_500m_C280_RNW_u_v_vBETRAG_neu_flussschlauch_vg0p0avk0p2_final.dbf;fglr_o_fr_500m_C280_RNW_u_v_vBETRAG_neu_flussschlauch_vg0p2avk0p4_final.dbf;fglr_o_fr_500m_C280_RNW_u_v_vBETRAG_neu_flussschlauch_vg0p4avk0p6_final.dbf;fglr_o_fr_500m_C280_RNW_u_v_vBETRAG_neu_flussschlauch_vg0p6avk0p8_final.dbf;fglr_o_fr_500m_C280_RNW_u_v_vBETRAG_neu_flussschlauch_vg0p8avk1p0_final.dbf;fglr_o_fr_500m_C280_RNW_u_v_vBETRAG_neu_flussschlauch_vg1p0avk1p2_final.dbf;fglr_o_fr_500m_C280_RNW_u_v_vBETRAG_neu_flussschlauch_vg1p2avk1p4_final.dbf;fglr_o_fr_500m_C280_RNW_u_v_vBETRAG_neu_flussschlauch_vg1p4avk1p6_final.dbf;fglr_o_fr_500m_C280_RNW_u_v_vBETRAG_neu_flussschlauch_vg1p6avk9p0_final.dbf does not exist or is not supported Failed to execute (Merge). 
&amp;gt;&amp;gt;&amp;gt; &lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 12:36:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/merge-multiple-tables-with-merge-management/m-p/255521#M19629</guid>
      <dc:creator>MatthiasAbele</dc:creator>
      <dc:date>2021-12-11T12:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: merge multiple tables with Merge_management?</title>
      <link>https://community.esri.com/t5/python-questions/merge-multiple-tables-with-merge-management/m-p/255522#M19630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Thanx, but I still get an error:&lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Not sure why it won't work for you???&amp;nbsp; I ran it from 2 different environments and it worked fine.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;From where are you running this script?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Aug 2011 14:48:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/merge-multiple-tables-with-merge-management/m-p/255522#M19630</guid>
      <dc:creator>RDHarles</dc:creator>
      <dc:date>2011-08-24T14:48:31Z</dc:date>
    </item>
    <item>
      <title>Re: merge multiple tables with Merge_management?</title>
      <link>https://community.esri.com/t5/python-questions/merge-multiple-tables-with-merge-management/m-p/255523#M19631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hallo,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I ran it serveral times...with .info-tables it is working perfectely. But with info-tables, the file name length seems to be limited. Therefor I will have to work with .dbf-tables.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;With dbf-tables I always get error messages, independently of the file name length:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;Runtime error &amp;lt;class 'arcgisscripting.ExecuteError'&amp;gt;: Failed to execute. Parameters are not valid. ERROR 000732: Input Datasets: Dataset fglr78.dbf;fglrjk.dbf does not exist or is not supported Failed to execute (Merge). &lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Attached are 3 out of many dbfs I would like to merge. Perhaps you can try it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Yours,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Matthias&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Aug 2011 06:11:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/merge-multiple-tables-with-merge-management/m-p/255523#M19631</guid>
      <dc:creator>MatthiasAbele</dc:creator>
      <dc:date>2011-08-25T06:11:23Z</dc:date>
    </item>
    <item>
      <title>Re: merge multiple tables with Merge_management?</title>
      <link>https://community.esri.com/t5/python-questions/merge-multiple-tables-with-merge-management/m-p/255524#M19632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I just ran this script:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy, os
arcpy.env.workspace = "c:/junk/dbf/mergeEasy"
tableList = arcpy.ListTables()
arcpy.Merge_management(tableList, "easy.dbf")&lt;/PRE&gt;&lt;SPAN&gt;...on the data you posted and it worked fine for me.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Not sure what your doing differently on your end?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also, what do you mean by the difference between .info-tables &amp;amp; info-tables? (.dbf vs. file geodatabase)?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 12:36:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/merge-multiple-tables-with-merge-management/m-p/255524#M19632</guid>
      <dc:creator>RDHarles</dc:creator>
      <dc:date>2021-12-11T12:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: merge multiple tables with Merge_management?</title>
      <link>https://community.esri.com/t5/python-questions/merge-multiple-tables-with-merge-management/m-p/255525#M19633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;No idea...now it is working, but thanx!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Matthias&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Aug 2011 12:14:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/merge-multiple-tables-with-merge-management/m-p/255525#M19633</guid>
      <dc:creator>MatthiasAbele</dc:creator>
      <dc:date>2011-08-25T12:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: merge multiple tables with Merge_management?</title>
      <link>https://community.esri.com/t5/python-questions/merge-multiple-tables-with-merge-management/m-p/255526#M19634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;You can do it in Arc10:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy, os
arcpy.env.workspace = "c:/junk"
tableList = arcpy.ListTables()
arcpy.Merge_management(tableList, "easy.dbf")&lt;/PRE&gt;In 9.x, it's much more involved.&lt;BR /&gt;&lt;BR /&gt;What version of Arc are you using?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&amp;nbsp; The code you provided worked.&amp;nbsp; I swear that at one time I tried that very same piece of code and I got an error. Sometimes you just need to step away for a while or get a fresh pair of eyes on it. Thanks again.&amp;nbsp; ..... oh, and I'm using 10.0.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 12:36:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/merge-multiple-tables-with-merge-management/m-p/255526#M19634</guid>
      <dc:creator>leewalston</dc:creator>
      <dc:date>2021-12-11T12:36:57Z</dc:date>
    </item>
  </channel>
</rss>

