<?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: Table to Table Not Creating Output Table But Also Not Failing or Reporting Any Errors in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/table-to-table-not-creating-output-table-but-also/m-p/235563#M18327</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I took your four lines, header and three rows of data, and put them in a CSV file on the file system.&amp;nbsp; I then ran the following code:&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

csv &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN class="comment token"&gt;# path to csv file&lt;/SPAN&gt;
out_path &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;scratchGDB
out_name &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'sample'&lt;/SPAN&gt;

arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;TableToTable_conversion&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; csv&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; out_path&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; out_name
&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;It worked fine for me, although it did convert API to a Double, but that could be handled in a field mapping.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What version of ArcGIS Desktop or Pro are you using?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 11:53:03 GMT</pubDate>
    <dc:creator>JoshuaBixby</dc:creator>
    <dc:date>2021-12-11T11:53:03Z</dc:date>
    <item>
      <title>Table to Table Not Creating Output Table But Also Not Failing or Reporting Any Errors</title>
      <link>https://community.esri.com/t5/python-questions/table-to-table-not-creating-output-table-but-also/m-p/235553#M18317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am attempting to create a .dbf or geodatabase table from a csv. At first i attempted to just use the 'Table to Table' tool. I set up the field mappings and everything just right but when i run the tool it completes in mere seconds and says it has done so successfully. However, when i attempt to find the output table there is nothing there. I tried to use the 'Excel to Table' tool, same result. I even went so far as to create the table using arcpy and looping through the csv row by row and inserting those rows into the table with an insertcursor. I even had it print each row right before inserting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the last portion of the code:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;readcsv &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; csv&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;reader&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;opencsv&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; row &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; readcsv&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"API"&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;not&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; row&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; row
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; icursor&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;insertRow&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;row&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;a sample of the output:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;['5067088870000', '0.000', '30.670', 'IGNACIO-BLANCO', 'PICTURED CLIFFS']
['5067065920000', '0.251', '370.725', 'IGNACIO-BLANCO', 'PICTURED CLIFFS']
['5067062590000', '0.390', '1021.573', 'IGNACIO-BLANCO', 'PICTURED CLIFFS']
['5067062570000', '0.446', '1100.212', 'IGNACIO-BLANCO', 'PICTURED CLIFFS']
['5067050960000', '0.131', '952.399', 'IGNACIO-BLANCO', 'MESAVERDE']
['5067088870000', '0.000', '1524.118', 'IGNACIO-BLANCO', 'MESAVERDE']
['5067052140000', '7.215', '5309.192', 'IGNACIO-BLANCO', 'PICTURED CLIFFS']
['5067051470000', '0.000', '1051.158', 'IGNACIO-BLANCO', 'MESAVERDE']
['5067052460000', '0.121', '2409.044', 'IGNACIO-BLANCO', 'MESAVERDE']
['5067055830000', '0.000', '3503.423', 'IGNACIO-BLANCO', 'MESAVERDE']
['5067052190000', '0.000', '972.064', 'IGNACIO-BLANCO', 'MESAVERDE']
['5067063900000', '0.476', '1023.767', 'IGNACIO-BLANCO', 'PICTURED CLIFFS']
['5067062600000', '0.121', '4221.302', 'IGNACIO-BLANCO', 'MESAVERDE']&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Still nothing, the table exists but it is empty. I'm not sure what else i can do to try and get this data into a .dbf or preferably a geodatabase table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 11:53:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/table-to-table-not-creating-output-table-but-also/m-p/235553#M18317</guid>
      <dc:creator>BrandonZaitz</dc:creator>
      <dc:date>2021-12-11T11:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: Table to Table Not Creating Output Table But Also Not Failing or Reporting Any Errors</title>
      <link>https://community.esri.com/t5/python-questions/table-to-table-not-creating-output-table-but-also/m-p/235554#M18318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Data issues are tough to diagnose in forums without sample data.&amp;nbsp; Can you strip down the data set and post it here?&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2019 16:57:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/table-to-table-not-creating-output-table-but-also/m-p/235554#M18318</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2019-01-15T16:57:54Z</dc:date>
    </item>
    <item>
      <title>Re: Table to Table Not Creating Output Table But Also Not Failing or Reporting Any Errors</title>
      <link>https://community.esri.com/t5/python-questions/table-to-table-not-creating-output-table-but-also/m-p/235555#M18319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is all proprietary, just that bit I showed that was printing is probably too much. I am just confused as to why no errors are being reported but nothing is happening on the output side for two tools and my script.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2019 17:06:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/table-to-table-not-creating-output-table-but-also/m-p/235555#M18319</guid>
      <dc:creator>BrandonZaitz</dc:creator>
      <dc:date>2019-01-15T17:06:41Z</dc:date>
    </item>
    <item>
      <title>Re: Table to Table Not Creating Output Table But Also Not Failing or Reporting Any Errors</title>
      <link>https://community.esri.com/t5/python-questions/table-to-table-not-creating-output-table-but-also/m-p/235556#M18320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you create some fictitious/sample data that replicates the issue?&amp;nbsp; I have used in the past all of the tools you describe to do similar workflows and they worked fine, so it is either something with the data or workflow.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2019 17:16:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/table-to-table-not-creating-output-table-but-also/m-p/235556#M18320</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2019-01-15T17:16:09Z</dc:date>
    </item>
    <item>
      <title>Re: Table to Table Not Creating Output Table But Also Not Failing or Reporting Any Errors</title>
      <link>https://community.esri.com/t5/python-questions/table-to-table-not-creating-output-table-but-also/m-p/235557#M18321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you try casting the numerical data to an appropriate numerical data type?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="" style="color: #000000; background: #f5f2f0; border: 0px; margin: 0.5em 0px; padding: 1em 1em 1em 3.8em;"&gt;&lt;CODE style="border: 0px; font-weight: inherit;"&gt;[int('5067088870000'), float('0.000'), float('30.670'), 'IGNACIO-BLANCO', 'PICTURED CLIFFS']&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;vs.&lt;/P&gt;&lt;PRE class="" style="color: #000000; background: #f5f2f0; border: 0px; margin: 0.5em 0px; padding: 1em 1em 1em 3.8em;"&gt;&lt;CODE style="border: 0px; font-weight: inherit;"&gt;['5067088870000', '0.000', '30.670', 'IGNACIO-BLANCO', 'PICTURED CLIFFS']&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2019 17:50:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/table-to-table-not-creating-output-table-but-also/m-p/235557#M18321</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2019-01-15T17:50:59Z</dc:date>
    </item>
    <item>
      <title>Re: Table to Table Not Creating Output Table But Also Not Failing or Reporting Any Errors</title>
      <link>https://community.esri.com/t5/python-questions/table-to-table-not-creating-output-table-but-also/m-p/235558#M18322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;here is some sample data that i cannot get to create a table either... just drop into notepad or something and save as csv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;API,Oil_EUR_MBBL,Gas_EUR_MMcf&lt;BR /&gt;5652846240000,0.000,30.670&lt;BR /&gt;5897751350000,0.251,370.725&lt;BR /&gt;5984332480000,0.390,1021.573&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2019 20:41:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/table-to-table-not-creating-output-table-but-also/m-p/235558#M18322</guid>
      <dc:creator>BrandonZaitz</dc:creator>
      <dc:date>2019-01-15T20:41:03Z</dc:date>
    </item>
    <item>
      <title>Re: Table to Table Not Creating Output Table But Also Not Failing or Reporting Any Errors</title>
      <link>https://community.esri.com/t5/python-questions/table-to-table-not-creating-output-table-but-also/m-p/235559#M18323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just wrote out what I had written in the console into a python scripts and ran it separately and it worked. Still, 'table to table' does not work for that sample of data i just pasted in my earlier reply&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2019 20:55:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/table-to-table-not-creating-output-table-but-also/m-p/235559#M18323</guid>
      <dc:creator>BrandonZaitz</dc:creator>
      <dc:date>2019-01-15T20:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: Table to Table Not Creating Output Table But Also Not Failing or Reporting Any Errors</title>
      <link>https://community.esri.com/t5/python-questions/table-to-table-not-creating-output-table-but-also/m-p/235560#M18324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post your entire script? We can't see important parts like how you create your insert cursor or run table to table (don't just include those parts, post the whole thing).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2019 21:34:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/table-to-table-not-creating-output-table-but-also/m-p/235560#M18324</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2019-01-15T21:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: Table to Table Not Creating Output Table But Also Not Failing or Reporting Any Errors</title>
      <link>https://community.esri.com/t5/python-questions/table-to-table-not-creating-output-table-but-also/m-p/235561#M18325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Put a header row in to define the columns.&amp;nbsp; could be as simple as that&lt;/P&gt;&lt;P&gt;I used your data, added a header/column name row. I used numpy's genfromtext function rather than the python csv module, and got what is needed to make a table (in my case.. NumPyArrayToTable) which can be used in Pro.&amp;nbsp; There are other ways, but sometimes the obvious helps, because I think your data is being assessed in bulk making the lowest data type prevail (text), when I had headers, each Column is looked at for a 'probable' data type and it retained the integer, float and string columns&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2019 21:50:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/table-to-table-not-creating-output-table-but-also/m-p/235561#M18325</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2019-01-15T21:50:30Z</dc:date>
    </item>
    <item>
      <title>Re: Table to Table Not Creating Output Table But Also Not Failing or Reporting Any Errors</title>
      <link>https://community.esri.com/t5/python-questions/table-to-table-not-creating-output-table-but-also/m-p/235562#M18326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My script is working fine now. I wrote something to clean up the csv (remove commas from numbers, etc) and then included more arguments when adding fields to my created table (precision, etc) and that did the trick. However, the GUI toolbox 'table to table' tool on the same cleaned up csv exporting to the same geodatabase is not creating any output. So, at this point it doesn't really matter to me all that much but people I work with I'm sure would like to be able to use that tool. So if anyone has any insight on that I would be interested to hear it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2019 22:16:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/table-to-table-not-creating-output-table-but-also/m-p/235562#M18326</guid>
      <dc:creator>BrandonZaitz</dc:creator>
      <dc:date>2019-01-15T22:16:25Z</dc:date>
    </item>
    <item>
      <title>Re: Table to Table Not Creating Output Table But Also Not Failing or Reporting Any Errors</title>
      <link>https://community.esri.com/t5/python-questions/table-to-table-not-creating-output-table-but-also/m-p/235563#M18327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I took your four lines, header and three rows of data, and put them in a CSV file on the file system.&amp;nbsp; I then ran the following code:&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

csv &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN class="comment token"&gt;# path to csv file&lt;/SPAN&gt;
out_path &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;scratchGDB
out_name &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'sample'&lt;/SPAN&gt;

arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;TableToTable_conversion&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; csv&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; out_path&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; out_name
&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;It worked fine for me, although it did convert API to a Double, but that could be handled in a field mapping.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What version of ArcGIS Desktop or Pro are you using?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 11:53:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/table-to-table-not-creating-output-table-but-also/m-p/235563#M18327</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2021-12-11T11:53:03Z</dc:date>
    </item>
    <item>
      <title>Re: Table to Table Not Creating Output Table But Also Not Failing or Reporting Any Errors</title>
      <link>https://community.esri.com/t5/python-questions/table-to-table-not-creating-output-table-but-also/m-p/235564#M18328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah, it runs when I call the function in python essentially in a near identical fashion as you did above. However, using the GUI with the same inputs still yields no new table. Very odd. Im running version 10.6.1.9270.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2019 23:13:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/table-to-table-not-creating-output-table-but-also/m-p/235564#M18328</guid>
      <dc:creator>BrandonZaitz</dc:creator>
      <dc:date>2019-01-15T23:13:56Z</dc:date>
    </item>
    <item>
      <title>Re: Table to Table Not Creating Output Table But Also Not Failing or Reporting Any Errors</title>
      <link>https://community.esri.com/t5/python-questions/table-to-table-not-creating-output-table-but-also/m-p/235565#M18329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What does the code snippet generated from the GUI look like?&amp;nbsp; Maybe the GUI is passing an argument incorrectly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2019 23:29:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/table-to-table-not-creating-output-table-but-also/m-p/235565#M18329</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2019-01-15T23:29:17Z</dc:date>
    </item>
  </channel>
</rss>

