<?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: Stata to Geodatabase Conversion (400-500 fields in .dta file) in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/stata-to-geodatabase-conversion-400-500-fields-in/m-p/270135#M15598</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;ArcGIS 10, File Geodatabase&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In addition if some of the Stata fields begin with underscores, at what point and in what software can I change these? I'm assuming FGDB does not like field names that start with underscores.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 26 Jul 2011 15:38:51 GMT</pubDate>
    <dc:creator>DanielSheehan</dc:creator>
    <dc:date>2011-07-26T15:38:51Z</dc:date>
    <item>
      <title>Stata to Geodatabase Conversion (400-500 fields in .dta file)</title>
      <link>https://community.esri.com/t5/data-management-questions/stata-to-geodatabase-conversion-400-500-fields-in/m-p/270133#M15596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;What is the best way to convert a Stata file into a geodatabase? I have many fields, 400-500, the Stata file. I have Stat Transfer and I usually transfer from Stata to .dbf but when there's this many fields it will not work.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jul 2011 15:25:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/stata-to-geodatabase-conversion-400-500-fields-in/m-p/270133#M15596</guid>
      <dc:creator>DanielSheehan</dc:creator>
      <dc:date>2011-07-26T15:25:22Z</dc:date>
    </item>
    <item>
      <title>Re: Stata to Geodatabase Conversion (400-500 fields in .dta file)</title>
      <link>https://community.esri.com/t5/data-management-questions/stata-to-geodatabase-conversion-400-500-fields-in/m-p/270134#M15597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Are you looking to transfer to a file geodatabase or an ArcSDE database?&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Which version of ArcGIS?&amp;nbsp; If ArcSDE, which database?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- V&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jul 2011 15:36:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/stata-to-geodatabase-conversion-400-500-fields-in/m-p/270134#M15597</guid>
      <dc:creator>VinceAngelo</dc:creator>
      <dc:date>2011-07-26T15:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: Stata to Geodatabase Conversion (400-500 fields in .dta file)</title>
      <link>https://community.esri.com/t5/data-management-questions/stata-to-geodatabase-conversion-400-500-fields-in/m-p/270135#M15598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;ArcGIS 10, File Geodatabase&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In addition if some of the Stata fields begin with underscores, at what point and in what software can I change these? I'm assuming FGDB does not like field names that start with underscores.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jul 2011 15:38:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/stata-to-geodatabase-conversion-400-500-fields-in/m-p/270135#M15598</guid>
      <dc:creator>DanielSheehan</dc:creator>
      <dc:date>2011-07-26T15:38:51Z</dc:date>
    </item>
    <item>
      <title>Re: Stata to Geodatabase Conversion (400-500 fields in .dta file)</title>
      <link>https://community.esri.com/t5/data-management-questions/stata-to-geodatabase-conversion-400-500-fields-in/m-p/270136#M15599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Most pre-10 ArcSDE database limit the column count to 256, but at 10.0 the ArcSDE limit was&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;increased to 500 (SE_MAX_COLUMNS).&amp;nbsp; The FGDB limit is 64K fields, but I believe they must&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;start with a character ([A-Z](A-Z0-9_)* - SQL requirement).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You're probably going to have to code this from scratch, so it doesn't really matter where you&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;make the change.&amp;nbsp; The fastest approach would use C++ (either ArcObjects or &lt;/SPAN&gt;&lt;A href="http://blogs.esri.com/Dev/blogs/geodatabase/default.aspx"&gt;FileGDB API&lt;/A&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;but if you don't have a lot of rows, C# or Python won't slow you down too much.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;What interface do you have at the Stata end for accessing raw data?&amp;nbsp; Or would you plan to use&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ASCII for interchange?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- V&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jul 2011 15:59:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/stata-to-geodatabase-conversion-400-500-fields-in/m-p/270136#M15599</guid>
      <dc:creator>VinceAngelo</dc:creator>
      <dc:date>2011-07-26T15:59:54Z</dc:date>
    </item>
  </channel>
</rss>

