<?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: arcpy.TableToTable_conversion CSV to DBF help in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/arcpy-tabletotable-conversion-csv-to-dbf-help/m-p/630047#M49040</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is related to the same effort, but specifically to the output...&amp;nbsp; If need to start a new post, let me know...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the resulting .dbf file, its creating a decimal with trailing zeroes:&lt;/P&gt;&lt;P&gt;750050&lt;/P&gt;&lt;P&gt;becomes&lt;/P&gt;&lt;P&gt;750050.00000000000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I avoid this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Feb 2016 18:23:59 GMT</pubDate>
    <dc:creator>DannyLackey</dc:creator>
    <dc:date>2016-02-04T18:23:59Z</dc:date>
    <item>
      <title>arcpy.TableToTable_conversion CSV to DBF help</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-tabletotable-conversion-csv-to-dbf-help/m-p/630035#M49028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using this page as my resource: &lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#//001200000027000000" title="http://resources.arcgis.com/en/help/main/10.2/index.html#//001200000027000000"&gt;ArcGIS Help (10.2, 10.2.1, and 10.2.2)&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I came up with this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;&lt;CODE&gt;&lt;SPAN class="kn"&gt;import&lt;/SPAN&gt; &lt;SPAN class="nn"&gt;arcpy&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="kn"&gt;from&lt;/SPAN&gt; &lt;SPAN class="nn"&gt;arcpy&lt;/SPAN&gt; &lt;SPAN class="kn"&gt;import&lt;/SPAN&gt; &lt;SPAN class="n"&gt;env&lt;/SPAN&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;SPAN class="n"&gt;env&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;workspace&lt;/SPAN&gt; &lt;SPAN class="o"&gt;=&lt;/SPAN&gt; &lt;SPAN class="s"&gt;"C:\"&lt;/SPAN&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;SPAN class="n"&gt;inTable&lt;/SPAN&gt; &lt;SPAN class="o"&gt;=&lt;/SPAN&gt; &lt;SPAN class="s"&gt;"c:\test.csv"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="n"&gt;outLocation&lt;/SPAN&gt; &lt;SPAN class="o"&gt;=&lt;/SPAN&gt; &lt;SPAN class="s"&gt;"c:\test.dbf"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="n"&gt;outTable&lt;/SPAN&gt; &lt;SPAN class="o"&gt;=&lt;/SPAN&gt; &lt;SPAN class="s"&gt;"test"&lt;/SPAN&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;SPAN class="n"&gt;arcpy&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;TableToTable_conversion&lt;/SPAN&gt;&lt;SPAN class="p"&gt;(&lt;/SPAN&gt;&lt;SPAN class="n"&gt;inTable&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt; &lt;SPAN class="n"&gt;outLocation&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt; &lt;SPAN class="n"&gt;outTable&lt;/SPAN&gt;&lt;SPAN class="p"&gt;)&lt;/SPAN&gt;&lt;/CODE&gt;&lt;SPAN class="p"&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="p"&gt;However, it's failing:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #e23d39;"&gt;Traceback (most recent call last):&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #e23d39;"&gt;&amp;nbsp; File "c:\test.py", line 4, in &amp;lt;module&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #e23d39;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.TableToTable_conversion("c:\test.csv", "c:\test.dbf", "test")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #e23d39;"&gt;&amp;nbsp; File "C:\Program Files (x86)\ArcGIS\Desktop10.1\arcpy\arcpy\conversion.py", line 1904, in TableToTable&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #e23d39;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; raise e&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #e23d39;"&gt;ExecuteError: Failed to execute. Parameters are not valid.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #e23d39;"&gt;ERROR 000732: Input Rows: Dataset c:\test.csv does not exist or is not supported&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #e23d39;"&gt;ERROR 000732: Output Location: Dataset c:\test.dbf does not exist or is not supported&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #e23d39;"&gt;Failed to execute (TableToTable).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #303030;"&gt;Is it clear where I'm going wrong?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Feb 2016 21:19:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-tabletotable-conversion-csv-to-dbf-help/m-p/630035#M49028</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2016-02-03T21:19:46Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.TableToTable_conversion CSV to DBF help</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-tabletotable-conversion-csv-to-dbf-help/m-p/630036#M49029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your paths are wrong, for Python. '\t' happens to mean tab. You can get around it by always prefacing paths with an 'r' to denote raw string format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="_jivemacro_uid_14545346101579103 jive_macro_code jive_text_macro" data-renderedposition="107.99715423583984_7.997159004211426_912_15" jivemacro_uid="_14545346101579103"&gt;&lt;CODE style="font-weight: inherit; font-style: inherit;"&gt;&lt;SPAN class="n" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;inTable&lt;/SPAN&gt; &lt;SPAN class="o" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="s" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;"c:\test.csv"&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Feb 2016 21:23:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-tabletotable-conversion-csv-to-dbf-help/m-p/630036#M49029</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2016-02-03T21:23:38Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.TableToTable_conversion CSV to DBF help</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-tabletotable-conversion-csv-to-dbf-help/m-p/630037#M49030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you.&amp;nbsp; I got it working.&amp;nbsp; I had a few things wrong. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my new WORKING code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import arcpy&lt;BR /&gt;from arcpy import env&lt;/P&gt;&lt;P&gt;env.workspace = r"C:\test"&lt;/P&gt;&lt;P&gt;inTable = r"C:\test\test.csv"&lt;BR /&gt;outLocation = r"C:\test\output"&lt;BR /&gt;outTable = "test.dbf"&lt;/P&gt;&lt;P&gt;arcpy.TableToTable_conversion(inTable, outLocation, outTable)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Feb 2016 21:37:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-tabletotable-conversion-csv-to-dbf-help/m-p/630037#M49030</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2016-02-03T21:37:26Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.TableToTable_conversion CSV to DBF help</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-tabletotable-conversion-csv-to-dbf-help/m-p/630038#M49031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can't you also use double backslash in place of the regular backslash in order to make the path correct?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14545354688665704 jive_text_macro" data-renderedposition="51.20000076293945_8_913_16" jivemacro_uid="_14545354688665704" modifiedtitle="true"&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000;"&gt;inTable = &lt;/SPAN&gt;&lt;SPAN class="string" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: blue;"&gt;"c:\\test.csv"&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Feb 2016 21:38:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-tabletotable-conversion-csv-to-dbf-help/m-p/630038#M49031</guid>
      <dc:creator>AdrianWelsh</dc:creator>
      <dc:date>2016-02-03T21:38:10Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.TableToTable_conversion CSV to DBF help</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-tabletotable-conversion-csv-to-dbf-help/m-p/630039#M49032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;Adrian Welsh wrote:

Can't you also use double backslash in place of the regular backslash in order to make the path correct?
&lt;/PRE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;DIV class="dp-highlighter"&gt;&lt;DIV class="bar"&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;/DIV&gt;&lt;OL class="dp-py" start="1"&gt;&lt;LI class="alt"&gt;&lt;SPAN&gt;&lt;SPAN&gt;inTable = &lt;/SPAN&gt;&lt;SPAN class="string"&gt;"c:\\test.csv"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;/DIV&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;inTable = "c:\\test.csv" &lt;/PRE&gt;&lt;/PRE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;DIV style="display: none;"&gt; &lt;/DIV&gt;&lt;P&gt;Yes. And forward slashes work as well:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;inTable = &lt;SPAN class="string"&gt;"c:/test.csv"&amp;nbsp; &lt;/SPAN&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 02:48:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-tabletotable-conversion-csv-to-dbf-help/m-p/630039#M49032</guid>
      <dc:creator>Luke_Pinner</dc:creator>
      <dc:date>2021-12-12T02:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.TableToTable_conversion CSV to DBF help</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-tabletotable-conversion-csv-to-dbf-help/m-p/630040#M49033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was going to mention that too! You beat me to it!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Feb 2016 21:43:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-tabletotable-conversion-csv-to-dbf-help/m-p/630040#M49033</guid>
      <dc:creator>AdrianWelsh</dc:creator>
      <dc:date>2016-02-03T21:43:47Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.TableToTable_conversion CSV to DBF help</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-tabletotable-conversion-csv-to-dbf-help/m-p/630041#M49034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, but double backslashes are more typing. As Luke points out, you can also use forward slash, but then you need to remember whether it's forward or backslashes you can't use. It's personal preference, but I use 'r'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Feb 2016 21:52:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-tabletotable-conversion-csv-to-dbf-help/m-p/630041#M49034</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2016-02-03T21:52:23Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.TableToTable_conversion CSV to DBF help</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-tabletotable-conversion-csv-to-dbf-help/m-p/630042#M49035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tend to use r'' as well. Except when it &lt;A href="https://bugs.python.org/issue1271"&gt;doesn't work&lt;/A&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Feb 2016 22:18:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-tabletotable-conversion-csv-to-dbf-help/m-p/630042#M49035</guid>
      <dc:creator>Luke_Pinner</dc:creator>
      <dc:date>2016-02-03T22:18:29Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.TableToTable_conversion CSV to DBF help</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-tabletotable-conversion-csv-to-dbf-help/m-p/630043#M49036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good to know. I can't say I've ever run into that situation (e.g. r'\'), but the lengthy and pointed discussion certainly makes me think it comes up more often than my brief experience. &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Feb 2016 22:28:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-tabletotable-conversion-csv-to-dbf-help/m-p/630043#M49036</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2016-02-03T22:28:35Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.TableToTable_conversion CSV to DBF help</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-tabletotable-conversion-csv-to-dbf-help/m-p/630044#M49037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's not just r'\', but any trailing backslash, i.e r'C:\'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Feb 2016 23:09:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-tabletotable-conversion-csv-to-dbf-help/m-p/630044#M49037</guid>
      <dc:creator>Luke_Pinner</dc:creator>
      <dc:date>2016-02-03T23:09:39Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.TableToTable_conversion CSV to DBF help</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-tabletotable-conversion-csv-to-dbf-help/m-p/630045#M49038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The debate .... the options .... &lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migration-blogpost/55463"&gt;Filenames and file paths in Python&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Feb 2016 23:33:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-tabletotable-conversion-csv-to-dbf-help/m-p/630045#M49038</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-02-03T23:33:53Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.TableToTable_conversion CSV to DBF help</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-tabletotable-conversion-csv-to-dbf-help/m-p/630046#M49039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for mentioning where "r\" doesn't work. Python is a lot deeper than I once thought! (and a deal more complicated)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2016 14:08:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-tabletotable-conversion-csv-to-dbf-help/m-p/630046#M49039</guid>
      <dc:creator>AdrianWelsh</dc:creator>
      <dc:date>2016-02-04T14:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.TableToTable_conversion CSV to DBF help</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-tabletotable-conversion-csv-to-dbf-help/m-p/630047#M49040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is related to the same effort, but specifically to the output...&amp;nbsp; If need to start a new post, let me know...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the resulting .dbf file, its creating a decimal with trailing zeroes:&lt;/P&gt;&lt;P&gt;750050&lt;/P&gt;&lt;P&gt;becomes&lt;/P&gt;&lt;P&gt;750050.00000000000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I avoid this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2016 18:23:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-tabletotable-conversion-csv-to-dbf-help/m-p/630047#M49040</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2016-02-04T18:23:59Z</dc:date>
    </item>
  </channel>
</rss>

