<?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: Conversion from CSV to DBF altering data... in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69313#M5691</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To avoid errors in the interpretation of the file it is best to attach the actual file instead of pasting it in a different format. The attach option is available (lower right corner) when you activate the advanced editor (link upper right corner).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Feb 2016 23:26:53 GMT</pubDate>
    <dc:creator>XanderBakker</dc:creator>
    <dc:date>2016-02-04T23:26:53Z</dc:date>
    <item>
      <title>Conversion from CSV to DBF altering data...</title>
      <link>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69285#M5663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, I successfully converted my .csv to a .dbf with this script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;env.workspace = r"c:\Output"&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;inTable = r"c:\Output\test.csv"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;outLocation = r"c:\Output"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;outTable = "test.dbf"&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;arcpy.TableToTable_conversion(inTable, outLocation, outTable)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is, in the resulting .dbf file, its adding a decimal with trailing zeroes to the value:&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 21:19:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69285#M5663</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2016-02-04T21:19:41Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion from CSV to DBF altering data...</title>
      <link>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69286#M5664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I believe you'd have to use the Field Mapping parameter of &lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#/Table_to_Table/001200000027000000/"&gt;TableToTable&lt;/A&gt; (which uses &lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#/FieldMap/018z0000007p000000/"&gt;FieldMap &lt;/A&gt;and &lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#/FieldMappings/018z00000078000000/"&gt;FieldMappings &lt;/A&gt;objects) to force the values into a field of LONG datatype.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tip: set up the field mapping in the GUI tool, run it, then "Copy As Python Snippet" through the Results window to get the syntax correct.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2016 21:26:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69286#M5664</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2016-02-04T21:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion from CSV to DBF altering data...</title>
      <link>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69287#M5665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure, but perhaps ArcGIS honors a schema.ini file: see &lt;A href="https://msdn.microsoft.com/en-us/library/ms709353(v=vs.85).aspx" title="https://msdn.microsoft.com/en-us/library/ms709353(v=vs.85).aspx"&gt;Schema.ini File (Text File Driver)&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2016 21:27:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69287#M5665</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2016-02-04T21:27:11Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion from CSV to DBF altering data...</title>
      <link>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69288#M5666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can confirm, ArcGIS does indeed honor schema.ini files - I use these when working with flat files/CSVs to ensure data types (e.g. to keep leading zeroes, etc).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2016 21:36:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69288#M5666</guid>
      <dc:creator>ChrisSmith7</dc:creator>
      <dc:date>2016-02-04T21:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion from CSV to DBF altering data...</title>
      <link>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69289#M5667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok.&amp;nbsp; I have a schema.ini file.&amp;nbsp; Do I need to point the script to that file in some way or does it simply need to be present in the same directory as the script or output?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2016 21:40:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69289#M5667</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2016-02-04T21:40:19Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion from CSV to DBF altering data...</title>
      <link>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69290#M5668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just make sure it's in the same directory - I create the schema.ini file in Python and write it to the directory where the table will go. So long as it's formatted correctly and in the same folder (you'll have to specify the target file in schema.ini), ArcGIS should pick-up on the driver to determine db structure. You can see this in action when viewing the tables in ArcCatalog.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2016 21:43:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69290#M5668</guid>
      <dc:creator>ChrisSmith7</dc:creator>
      <dc:date>2016-02-04T21:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion from CSV to DBF altering data...</title>
      <link>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69291#M5669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="http://desktop.arcgis.com/en/arcmap/latest/manage-data/tables/adding-an-ascii-or-text-file-table.htm" title="http://desktop.arcgis.com/en/arcmap/latest/manage-data/tables/adding-an-ascii-or-text-file-table.htm"&gt;Adding an ASCII or text file table—Help | ArcGIS for Desktop&lt;/A&gt; &lt;/P&gt;&lt;P&gt;from the Overriding how text files are formatted section&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; background-color: #fefefe;"&gt;ArcGIS uses its own implementation for accessing delimited text file information and should handle the most common cases for displaying these files in ArcGIS. As opposed to previous releases, schema.ini files, which are used by the Microsoft ODBC Text Driver for storing data description information, are not required for displaying delimited text file information in ArcGIS. However, if a schema.ini is present, ArcGIS will honor the settings specified in a schema.ini file to determine how the text file should be displayed.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; background-color: #fefefe;"&gt;It needs to be present where the text file will be/is according to this&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2016 21:49:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69291#M5669</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-02-04T21:49:27Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion from CSV to DBF altering data...</title>
      <link>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69292#M5670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok.&amp;nbsp; My schema.ini file was created when I made a connection to my .csv file in Toad.&amp;nbsp; After looking at this file, I'm thinking it's not what I'm after.&amp;nbsp; Can you explain how you created your schema.ini file to suit your needs?&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2016 21:54:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69292#M5670</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2016-02-04T21:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion from CSV to DBF altering data...</title>
      <link>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69293#M5671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, I found this example here:&amp;nbsp; Does this method apply in my situation?&amp;nbsp; &lt;A href="http://stackoverflow.com/questions/12259562/how-can-i-create-schema-ini-file-i-need-to-export-my-csv-file-to-datagridview" title="http://stackoverflow.com/questions/12259562/how-can-i-create-schema-ini-file-i-need-to-export-my-csv-file-to-datagridview"&gt;http://stackoverflow.com/questions/12259562/how-can-i-create-schema-ini-file-i-need-to-export-my-csv-file-to-datagridvie…&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2016 21:58:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69293#M5671</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2016-02-04T21:58:35Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion from CSV to DBF altering data...</title>
      <link>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69294#M5672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;and look athe link inside that link &lt;A href="http://aspdotnetcodes.com/Importing_CSV_Database_Schema.ini.aspx" title="http://aspdotnetcodes.com/Importing_CSV_Database_Schema.ini.aspx"&gt;Importing CSV file into Database with Schema.ini - Creating Schema.ini file dynamically or at run-time to import CSV fil…&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the requirements in there&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #000000; font-family: Verdana; font-size: 12px; text-align: justify;"&gt;Points to remember before creating Schema.ini&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Verdana; font-size: 12px; text-align: justify;"&gt;1. The schema information file, must always named as 'schema.ini'. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Verdana; font-size: 12px; text-align: justify;"&gt;2. The schema.ini file must be kept in the same directory where the CSV file exists. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Verdana; font-size: 12px; text-align: justify;"&gt;3. The schema.ini file must be created before reading the CSV file. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Verdana; font-size: 12px; text-align: justify;"&gt;4. The first line of the schema.ini, must the name of the CSV file, followed by the properties of the CSV file, and then the properties of the each column in the CSV file.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Verdana; font-size: 12px; text-align: justify;"&gt;and it is a text file... so create in a text editor, and explore with different options until you get it right.&amp;nbsp; You can't foul up the csv file in any event... and even if that happened you would have your backup&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2016 22:02:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69294#M5672</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-02-04T22:02:27Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion from CSV to DBF altering data...</title>
      <link>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69295#M5673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Something isn't working...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, after having created the Schema.ini file containing this info:&lt;/P&gt;&lt;P&gt;[test.csv]&lt;/P&gt;&lt;P&gt;ColNameHeader=True&lt;/P&gt;&lt;P&gt;DateTimeFormat=dd-MMM-yyyy&lt;/P&gt;&lt;P&gt;Format=CSVDelimited&lt;/P&gt;&lt;P&gt;Col1=A Long&lt;/P&gt;&lt;P&gt;Col2=B Long&lt;/P&gt;&lt;P&gt;Col3=C DateTime&lt;/P&gt;&lt;P&gt;Col4=D DateTime&lt;/P&gt;&lt;P&gt;Col5=E Double&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My conversion script is suddenly failing.&amp;nbsp; As soon as I remove this Schema.ini file, it runs fine.&amp;nbsp; Guessing there is something wrong with my Schema.ini file.&amp;nbsp; Is it clear where I went wrong?&amp;nbsp; It's in the same directory as the csv.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2016 22:40:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69295#M5673</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2016-02-04T22:40:27Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion from CSV to DBF altering data...</title>
      <link>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69296#M5674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Regarding number 3, if, for some reason, you do skip to reading the CSV before creating the entries in an existing schema.ini file, it's really ok - ArcGIS should just append the file with some basic attributes - you can just edit with a text editor and adjust the structure as needed. You can have multiple entries in schema.ini for multiple files (in the same directory).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, if a schema.ini file doesn't exist, it's kinda handy that ArcGIS will create one upon first read. Good if you're being a lazy coder, lol. You can then make the edits directly in the schema.ini file and refresh in ArcCatalog/re-run your process.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2016 22:41:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69296#M5674</guid>
      <dc:creator>ChrisSmith7</dc:creator>
      <dc:date>2016-02-04T22:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion from CSV to DBF altering data...</title>
      <link>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69297#M5675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you mean to format date with three Ms?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2016 22:45:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69297#M5675</guid>
      <dc:creator>ChrisSmith7</dc:creator>
      <dc:date>2016-02-04T22:45:27Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion from CSV to DBF altering data...</title>
      <link>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69298#M5676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just grabbed that directly from the example.&amp;nbsp; I thought about just removing it altogether and let it carry over the date as is, but figured I'd leave it in just in case.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2016 22:48:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69298#M5676</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2016-02-04T22:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion from CSV to DBF altering data...</title>
      <link>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69299#M5677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;your column names are A,B, etc?&lt;/P&gt;&lt;P&gt;another visual&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://gisnuts.com/terra/blog/2012/06/14/using-the-schemaini-file-to-import-a-csv-file-into-arcgis" title="https://gisnuts.com/terra/blog/2012/06/14/using-the-schemaini-file-to-import-a-csv-file-into-arcgis"&gt;Using the Schema.ini File to Import a CSV File into ArcGIS | GISNuts.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;and make sure there no blank rows...especially at the end of the file &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2016 22:49:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69299#M5677</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-02-04T22:49:51Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion from CSV to DBF altering data...</title>
      <link>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69300#M5678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It should work - according to the documentation "&lt;SPAN style="color: #2a2a2a; font-family: 'Segoe UI', 'Lucida Grande', Verdana, Arial, Helvetica, sans-serif; font-size: 13px;"&gt;All Microsoft Jet formats except A.M. and P.M. are supported."&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2016 22:49:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69300#M5678</guid>
      <dc:creator>ChrisSmith7</dc:creator>
      <dc:date>2016-02-04T22:49:53Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion from CSV to DBF altering data...</title>
      <link>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69301#M5679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well no, that's something else I grabbed from the example.&amp;nbsp; It said you should copy that as is....&amp;nbsp; ay ay ay.&amp;nbsp; Ok, so A, B, C etc, represents the actual column names...&amp;nbsp; ?&amp;nbsp; I'll try that and report back.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2016 22:51:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69301#M5679</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2016-02-04T22:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion from CSV to DBF altering data...</title>
      <link>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69302#M5680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also, did you rename your columns to A,B,C,D, etc?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2016 22:51:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69302#M5680</guid>
      <dc:creator>ChrisSmith7</dc:creator>
      <dc:date>2016-02-04T22:51:21Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion from CSV to DBF altering data...</title>
      <link>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69303#M5681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post an example of your data? This has got to be a simple fix.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2016 22:52:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69303#M5681</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2016-02-04T22:52:40Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion from CSV to DBF altering data...</title>
      <link>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69304#M5682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is a sample of my data:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="375"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="19" width="64"&gt;X&lt;/TD&gt;&lt;TD width="64"&gt;Y&lt;/TD&gt;&lt;TD width="86"&gt;START_DTTM&lt;/TD&gt;&lt;TD width="75"&gt;END_DTTM&lt;/TD&gt;&lt;TD width="86"&gt;Value&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="19"&gt;1468050&lt;/TD&gt;&lt;TD align="right"&gt;750150&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;1/7/2016&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;1/31/2016&lt;/TD&gt;&lt;TD align="right"&gt;0.13237318&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="19"&gt;1468100&lt;/TD&gt;&lt;TD align="right"&gt;750150&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;1/7/2016&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;1/31/2016&lt;/TD&gt;&lt;TD align="right"&gt;-0.60834539&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="19"&gt;1468150&lt;/TD&gt;&lt;TD align="right"&gt;750150&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;1/7/2016&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;1/31/2016&lt;/TD&gt;&lt;TD align="right"&gt;-0.17450202&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="19"&gt;1468200&lt;/TD&gt;&lt;TD align="right"&gt;750150&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;1/7/2016&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;1/31/2016&lt;/TD&gt;&lt;TD align="right"&gt;-0.34773338&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="19"&gt;1467700&lt;/TD&gt;&lt;TD align="right"&gt;750100&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;1/7/2016&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;1/31/2016&lt;/TD&gt;&lt;TD align="right"&gt;-0.19723971&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="19"&gt;1467750&lt;/TD&gt;&lt;TD align="right"&gt;750100&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;1/7/2016&lt;/TD&gt;&lt;TD align="right" class="xl65"&gt;1/31/2016&lt;/TD&gt;&lt;TD align="right"&gt;0.16580771&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2016 22:55:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/conversion-from-csv-to-dbf-altering-data/m-p/69304#M5682</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2016-02-04T22:55:47Z</dc:date>
    </item>
  </channel>
</rss>

