<?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: ERROR 000732 on executing TableToTable in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/error-000732-on-executing-tabletotable/m-p/1459191#M70577</link>
    <description>&lt;P&gt;I am having similar issues while converting a pandas dataframe to gdb table as well.&lt;/P&gt;&lt;P&gt;See coed below. It did run the first time I ran but has bee failing since. I have tried running it by changing workspace as well.&amp;nbsp;&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;gdb_path = r"Z:\Shared\SMS GIS\Long_Term_Projects\Development_Environmental_Tracker_GIS\Project_Packet_DataUpload_FINAL.gdb"&lt;BR /&gt;table_name = "Dev_Portfolio"&lt;/P&gt;&lt;P&gt;arcpy.env.workspace = r"Z:\Shared\SMS GIS\Long_Term_Projects\Development_Environmental_Tracker_GIS\Project_Packet_DataUpload_FINAL.gdb"&lt;BR /&gt;out_ws = arcpy.env.workspace&lt;/P&gt;&lt;P&gt;# # Convert the DataFrame to a gdb table&lt;BR /&gt;# arcpy.TableToTable_conversion(df, gdb_path, table_name)&lt;/P&gt;&lt;P&gt;try:&lt;BR /&gt;# Convert the DataFrame to a gdb table&lt;BR /&gt;arcpy.TableToTable_conversion(df, out_ws, table_name)&lt;BR /&gt;print(f"DataFrame converted to gdb table: {table_name}")&lt;BR /&gt;except arcpy.ExecuteError as ee:&lt;BR /&gt;print("ArcPy ExecuteError occurred:")&lt;BR /&gt;print(ee)&lt;BR /&gt;except Exception as e:&lt;BR /&gt;print("An error occurred:")&lt;BR /&gt;print(e)&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 13 May 2024 16:52:03 GMT</pubDate>
    <dc:creator>vshrinivasan_gispes</dc:creator>
    <dc:date>2024-05-13T16:52:03Z</dc:date>
    <item>
      <title>ERROR 000732 on executing TableToTable</title>
      <link>https://community.esri.com/t5/python-questions/error-000732-on-executing-tabletotable/m-p/490603#M38391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am facing a strange Problem. In the following Script two Tables in an sql-Server Database should be exported.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first one works, the second one not (I am sure it is spelled right).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; tempfile
&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; arcpyout

Location &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; tempfile&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mkdtemp&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;TableToTable_conversion&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"../bamo.sde/bko.bkEingriffart"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;outLocation&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"bkEingriffart.dbf"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;TableToTable_conversion&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"../bamo.sde/bko.bkMassnahmenbkMassnahmenZiele"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;outLocation&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"bkMassnahmenbkMassnahmenZiele.dbf"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;‍‍‍‍‍‍‍&lt;BR /&gt;I got the Error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;Traceback &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;most recent call last&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;&amp;nbsp; 
File &lt;SPAN class="string token"&gt;"C:\Users\xxx\.p2\pool\plugins\org.python.pydev_5.7.0.201704111357\pysrc\pydevd.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;1546&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt;module&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
globals &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; debugger&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;run&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;setup&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'file'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; None&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; None&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; is_module&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&amp;nbsp; 
File &lt;SPAN class="string token"&gt;"C:\Users\xxx\.p2\pool\plugins\org.python.pydev_5.7.0.201704111357\pysrc\pydevd.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;982&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; 
&lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; run&amp;nbsp;&amp;nbsp;&amp;nbsp; pydev_imports&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;execfile&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;file&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; globals&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; locals&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN class="comment token"&gt;# execute the script&amp;nbsp; &lt;/SPAN&gt;
File &lt;SPAN class="string token"&gt;"C:\Repositories\Python\bkonline2-deploy\gp-services\bko\exportSHP.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;13&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt;module&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;TableToTable_conversion&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"../bamo.sde/bko.bkMassnahmenbkMassnahmenZiele"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;outLocation&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"bkMassnahmenbkMassnahmenZiele.dbf"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&amp;nbsp; 
File &lt;SPAN class="string token"&gt;"C:\Program Files (x86)\ArcGIS\Desktop10.3\ArcPy\arcpy\conversion.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;2133&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; TableToTable&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&lt;SPAN class="keyword token"&gt;raise&lt;/SPAN&gt; earcgisscripting&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ExecuteError&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; Failed to execute&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt; Parameters are &lt;SPAN class="operator token"&gt;not&lt;/SPAN&gt; valid&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;
ERROR &lt;SPAN class="number token"&gt;000732&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; Input Rows&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; Dataset &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;bamo&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;sde&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;bko&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;bkMassnahmenbkMassnahmenZiele does &lt;SPAN class="operator token"&gt;not&lt;/SPAN&gt; exist &lt;SPAN class="operator token"&gt;or&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;is&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;not&lt;/SPAN&gt; supportedFailed to execute &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;TableToTable&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;I use ArcGIS 10.3.1 for develpoing, but the error also occurs when using ArcGIS 10.5.1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Later the Script shell run as a geoprocessing Task on an ArcGIS for server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anybody an idea?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regard,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 21:35:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000732-on-executing-tabletotable/m-p/490603#M38391</guid>
      <dc:creator>AndreasRuloffs1</dc:creator>
      <dc:date>2021-12-11T21:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 000732 on executing TableToTable</title>
      <link>https://community.esri.com/t5/python-questions/error-000732-on-executing-tabletotable/m-p/490604#M38392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To me it looks like you are missing a comma and some parentheses&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="comment token"&gt;# yours :&amp;nbsp; import tempfileimport arcpy&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; tempfileimport&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; arcpy&amp;nbsp;&amp;nbsp; &lt;SPAN class="comment token"&gt;#note comma...&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;# yours:&amp;nbsp; arcpy.TableToTable_conversion("../bamo.sde/bko.bkMassnahmenbkMassnahmenZiele",outLocation, "bkMassnahmenbkMassnahmenZiele.dbf")&lt;/SPAN&gt;

arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;TableToTable_conversion&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"../bamo.sde/bko.bkMassnahmenbkMassnahmenZiele"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;outLocation&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"bkMassnahmenbkMassnahmenZiele.dbf"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN class="comment token"&gt;# note enclosing parentheses...&lt;/SPAN&gt;


‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Just a WAG&amp;nbsp; (wild a$$ guess...)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 21:35:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000732-on-executing-tabletotable/m-p/490604#M38392</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2021-12-11T21:35:56Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 000732 on executing TableToTable</title>
      <link>https://community.esri.com/t5/python-questions/error-000732-on-executing-tabletotable/m-p/490605#M38393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Joe,&lt;/P&gt;&lt;P&gt;some new Lines got missing, I correct that.&lt;/P&gt;&lt;P&gt;I do not understand the part with the parantheses &lt;CODE&gt;TableToTable_conversion&lt;/CODE&gt; works with a single Table.&lt;CODE&gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2018 15:46:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000732-on-executing-tabletotable/m-p/490605#M38393</guid>
      <dc:creator>AndreasRuloffs1</dc:creator>
      <dc:date>2018-06-04T15:46:08Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 000732 on executing TableToTable</title>
      <link>https://community.esri.com/t5/python-questions/error-000732-on-executing-tabletotable/m-p/490606#M38394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My apologies Andreas- when I first read your post I thought I saw that you were using the output of a second TableToTable function as input to a first TableToTable function.&amp;nbsp; Your use of relative paths may be problematic as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not familiar with the use of tempfile, so my approach would be to set the out put workspace as an arcpy env variable:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; arcpy
&lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; arcpy &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; env

arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;workspace &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;'DriveLetter:\your\desired\path\to\output\directory'&lt;/SPAN&gt;
out_ws &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;workspace


&lt;SPAN class="comment token"&gt;# use a complete path to your sde connection and file name&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;# below is an example of one of mine&lt;/SPAN&gt;

in_table &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;'T:\GIS Documents\AddressPOC2017\AddIn\SLCOGIS_Joe.sde\SLCOGIS.GDB_ADD.DB2_StreetFile'&lt;/SPAN&gt;

out_table &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'YourNameOfChoice.dbf'&lt;/SPAN&gt;

arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;TableToTable_conversion&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;in_table&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;out_ws&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;out_table&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;


‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 21:35:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000732-on-executing-tabletotable/m-p/490606#M38394</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2021-12-11T21:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 000732 on executing TableToTable</title>
      <link>https://community.esri.com/t5/python-questions/error-000732-on-executing-tabletotable/m-p/490607#M38395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What if you comment out the first table conversion, does the second one (now the first) err out?&amp;nbsp; It is good to isolate whether it is the call itself or calling something successively that is causing an issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2018 19:56:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000732-on-executing-tabletotable/m-p/490607#M38395</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2018-06-04T19:56:53Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 000732 on executing TableToTable</title>
      <link>https://community.esri.com/t5/python-questions/error-000732-on-executing-tabletotable/m-p/490608#M38396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I comment out the first T2T conversion, then the second one fails anyway.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2018 07:54:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000732-on-executing-tabletotable/m-p/490608#M38396</guid>
      <dc:creator>AndreasRuloffs1</dc:creator>
      <dc:date>2018-06-05T07:54:49Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 000732 on executing TableToTable</title>
      <link>https://community.esri.com/t5/python-questions/error-000732-on-executing-tabletotable/m-p/490609#M38397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How is bkMassnahmenbkMassnahmenZiele different than bkEingriffart in terms of structure, e.g., is one a feature class and the other one a table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If both are just tables, my money is on permissions.&amp;nbsp; If the T2T tools can't open the table to read it, it will report it does not exist or is not supported.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2018 15:07:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000732-on-executing-tabletotable/m-p/490609#M38397</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2018-06-05T15:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 000732 on executing TableToTable</title>
      <link>https://community.esri.com/t5/python-questions/error-000732-on-executing-tabletotable/m-p/490610#M38398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately&lt;SPAN style="color: #074d7e; background-color: #ffffff; font-size: 13.92px;"&gt;&lt;SPAN&gt;&amp;nbsp;this makes no difference.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2018 09:56:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000732-on-executing-tabletotable/m-p/490610#M38398</guid>
      <dc:creator>AndreasRuloffs1</dc:creator>
      <dc:date>2018-06-08T09:56:50Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 000732 on executing TableToTable</title>
      <link>https://community.esri.com/t5/python-questions/error-000732-on-executing-tabletotable/m-p/490611#M38399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;bkEingriffart&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;is just a simple table, &lt;SPAN style="color: #3d3d3d; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;bkMassnahmenbkMassnahmenZiele&lt;SPAN&gt;&amp;nbsp; is a table to resolve an m to n relationship. Therefor it has a &lt;SPAN style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: pre-wrap; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;composite &lt;/SPAN&gt;primary key.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2018 09:58:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000732-on-executing-tabletotable/m-p/490611#M38399</guid>
      <dc:creator>AndreasRuloffs1</dc:creator>
      <dc:date>2018-06-08T09:58:09Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 000732 on executing TableToTable</title>
      <link>https://community.esri.com/t5/python-questions/error-000732-on-executing-tabletotable/m-p/490612#M38400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am having issues similar to this. Was your issues ever resolved?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Nov 2019 19:16:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000732-on-executing-tabletotable/m-p/490612#M38400</guid>
      <dc:creator>AronSaylor</dc:creator>
      <dc:date>2019-11-04T19:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 000732 on executing TableToTable</title>
      <link>https://community.esri.com/t5/python-questions/error-000732-on-executing-tabletotable/m-p/490613#M38401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin: 0cm; margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 11.5pt; color: #3d3d3d;"&gt;Hi Aron,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0cm; margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 11.5pt; color: #3d3d3d;"&gt;unfortunately, it was not really solved, the Problem seemed to be that the table had not a simple key but a Composite one.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0cm; margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 11.5pt; color: #3d3d3d;"&gt;I solved it by adding a view to the database that joined both of the tables. Then I was able to use TableToTable on the view.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0cm; margin-bottom: .0001pt;"&gt;I hope this is an Option for you too.&lt;/P&gt;&lt;P style="margin: 0cm; margin-bottom: .0001pt;"&gt;Best regards,&lt;/P&gt;&lt;P style="margin: 0cm; margin-bottom: .0001pt;"&gt;Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Nov 2019 10:06:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000732-on-executing-tabletotable/m-p/490613#M38401</guid>
      <dc:creator>AndreasRuloffs1</dc:creator>
      <dc:date>2019-11-05T10:06:03Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 000732 on executing TableToTable</title>
      <link>https://community.esri.com/t5/python-questions/error-000732-on-executing-tabletotable/m-p/1459191#M70577</link>
      <description>&lt;P&gt;I am having similar issues while converting a pandas dataframe to gdb table as well.&lt;/P&gt;&lt;P&gt;See coed below. It did run the first time I ran but has bee failing since. I have tried running it by changing workspace as well.&amp;nbsp;&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;gdb_path = r"Z:\Shared\SMS GIS\Long_Term_Projects\Development_Environmental_Tracker_GIS\Project_Packet_DataUpload_FINAL.gdb"&lt;BR /&gt;table_name = "Dev_Portfolio"&lt;/P&gt;&lt;P&gt;arcpy.env.workspace = r"Z:\Shared\SMS GIS\Long_Term_Projects\Development_Environmental_Tracker_GIS\Project_Packet_DataUpload_FINAL.gdb"&lt;BR /&gt;out_ws = arcpy.env.workspace&lt;/P&gt;&lt;P&gt;# # Convert the DataFrame to a gdb table&lt;BR /&gt;# arcpy.TableToTable_conversion(df, gdb_path, table_name)&lt;/P&gt;&lt;P&gt;try:&lt;BR /&gt;# Convert the DataFrame to a gdb table&lt;BR /&gt;arcpy.TableToTable_conversion(df, out_ws, table_name)&lt;BR /&gt;print(f"DataFrame converted to gdb table: {table_name}")&lt;BR /&gt;except arcpy.ExecuteError as ee:&lt;BR /&gt;print("ArcPy ExecuteError occurred:")&lt;BR /&gt;print(ee)&lt;BR /&gt;except Exception as e:&lt;BR /&gt;print("An error occurred:")&lt;BR /&gt;print(e)&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 May 2024 16:52:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000732-on-executing-tabletotable/m-p/1459191#M70577</guid>
      <dc:creator>vshrinivasan_gispes</dc:creator>
      <dc:date>2024-05-13T16:52:03Z</dc:date>
    </item>
  </channel>
</rss>

