<?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: Create large GDB? in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/create-large-gdb/m-p/624672#M48702</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Michael&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data Interoperability extension can help you, use a shapefile reader with a directory input and wildcard "*" and write to a single geodatabase feature class.&amp;nbsp; If you can share data I can give you a sample tool.&amp;nbsp; You can obtain an evaluation license of Data Interoperability.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Feb 2017 20:47:38 GMT</pubDate>
    <dc:creator>BruceHarold</dc:creator>
    <dc:date>2017-02-23T20:47:38Z</dc:date>
    <item>
      <title>Create large GDB?</title>
      <link>https://community.esri.com/t5/python-questions/create-large-gdb/m-p/624670#M48700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;I am trying to create a geodatabase with many (15000+) shapefiles in it. I have a folder with all the .shps, and I have an empty gdb. I have tried the feature class to geodatabase tool, but it hangs forever - over 45 minutes last time I tried it. What is the fastest way to do this?&amp;nbsp;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2017 20:19:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-large-gdb/m-p/624670#M48700</guid>
      <dc:creator>MichaelLenore1</dc:creator>
      <dc:date>2017-02-23T20:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: Create large GDB?</title>
      <link>https://community.esri.com/t5/python-questions/create-large-gdb/m-p/624671#M48701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With 1500+ shapefiles, this may take a few hours depending on the size of all the shapefiles.&amp;nbsp; I would recommend letting the Feature Class to Geodatabase run overnight and see if it completes by morning.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2017 20:44:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-large-gdb/m-p/624671#M48701</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2017-02-23T20:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: Create large GDB?</title>
      <link>https://community.esri.com/t5/python-questions/create-large-gdb/m-p/624672#M48702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Michael&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data Interoperability extension can help you, use a shapefile reader with a directory input and wildcard "*" and write to a single geodatabase feature class.&amp;nbsp; If you can share data I can give you a sample tool.&amp;nbsp; You can obtain an evaluation license of Data Interoperability.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2017 20:47:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-large-gdb/m-p/624672#M48702</guid>
      <dc:creator>BruceHarold</dc:creator>
      <dc:date>2017-02-23T20:47:38Z</dc:date>
    </item>
    <item>
      <title>Re: Create large GDB?</title>
      <link>https://community.esri.com/t5/python-questions/create-large-gdb/m-p/624673#M48703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Will do - but actually the place it hangs isn't the tool operation, it's the selection of input features. I selected them all (shift click) but arcmap is not responding - that is, I can't click "add" if that makes sense.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2017 21:03:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-large-gdb/m-p/624673#M48703</guid>
      <dc:creator>MichaelLenore1</dc:creator>
      <dc:date>2017-02-23T21:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: Create large GDB?</title>
      <link>https://community.esri.com/t5/python-questions/create-large-gdb/m-p/624674#M48704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could try python:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;import arcpy
arcpy.env.workspace = r"C:\shapefiles_workspace"

shapefileList = []

#Append shapefiles to list
for shapefile in arcpy.ListFeatureClasses("*"):
&amp;nbsp;&amp;nbsp;&amp;nbsp; shapefileList.append(shapefile)

#Reference output File Geodatabase
out_location = r"C:\file_geodatabase_path\Data.gdb"

#Import Shapefiles
arcpy.FeatureClassToGeodatabase_conversion(shapefileList, out_location)&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;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 02:36:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-large-gdb/m-p/624674#M48704</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2021-12-12T02:36:39Z</dc:date>
    </item>
    <item>
      <title>Re: Create large GDB?</title>
      <link>https://community.esri.com/t5/python-questions/create-large-gdb/m-p/624675#M48705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's running, and pretty fast! Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2017 21:20:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-large-gdb/m-p/624675#M48705</guid>
      <dc:creator>MichaelLenore1</dc:creator>
      <dc:date>2017-02-23T21:20:43Z</dc:date>
    </item>
    <item>
      <title>Re: Create large GDB?</title>
      <link>https://community.esri.com/t5/python-questions/create-large-gdb/m-p/624676#M48706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go with Python scripting as suggested by Jake if you have worked in Python.&lt;/P&gt;&lt;P&gt;Another alternative would be using Model Builder using iteration.&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/latest/tools/modelbuilder-toolbox/examples-of-using-iterators-in-modelbuilder.htm#ESRI_SECTION1_46903073A36D4E928AAFC0F0AE5240EC" title="http://desktop.arcgis.com/en/arcmap/latest/tools/modelbuilder-toolbox/examples-of-using-iterators-in-modelbuilder.htm#ESRI_SECTION1_46903073A36D4E928AAFC0F0AE5240EC"&gt;Examples of using iterators in ModelBuilder—Help | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/latest/tools/modelbuilder-toolbox/iterate-feature-classes.htm" title="http://desktop.arcgis.com/en/arcmap/latest/tools/modelbuilder-toolbox/iterate-feature-classes.htm"&gt;Iterate Feature Classes—Help | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2017 21:31:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-large-gdb/m-p/624676#M48706</guid>
      <dc:creator>JayantaPoddar</dc:creator>
      <dc:date>2017-02-23T21:31:01Z</dc:date>
    </item>
  </channel>
</rss>

