<?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: convert 100 GDB to shapefiles in ModelBuilder Questions</title>
    <link>https://community.esri.com/t5/modelbuilder-questions/convert-100-gdb-to-shapefiles/m-p/1657062#M4119</link>
    <description>&lt;P&gt;I think you are on the right track - if you are only getting one output from each GDB I suspect that the name is always the same, and each feature class is exported with that name, overwriting the previous one.&lt;/P&gt;&lt;P&gt;That suggests that the inline variable substitution is failing in some way.&lt;/P&gt;&lt;P&gt;I would rename the variables to something like Wname and FCname. You may need to use Calculate Value (&lt;A href="https://pro.arcgis.com/en/pro-app/3.4/tool-reference/modelbuilder-toolbox/calculate-value.htm)" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/3.4/tool-reference/modelbuilder-toolbox/calculate-value.htm)&lt;/A&gt;&amp;nbsp;to concatenate the two variables into a third to use in the output feature class name.&lt;/P&gt;&lt;P&gt;You can use a precondition (&lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/analysis/geoprocessing/modelbuilder/using-preconditions.htm)" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/help/analysis/geoprocessing/modelbuilder/using-preconditions.htm) &lt;/A&gt;to ensure the calculation occurs before the export step.&lt;/P&gt;</description>
    <pubDate>Fri, 10 Oct 2025 12:25:24 GMT</pubDate>
    <dc:creator>BobBooth1</dc:creator>
    <dc:date>2025-10-10T12:25:24Z</dc:date>
    <item>
      <title>convert 100 GDB to shapefiles</title>
      <link>https://community.esri.com/t5/modelbuilder-questions/convert-100-gdb-to-shapefiles/m-p/1656573#M4116</link>
      <description>&lt;P&gt;I have 100 GDB have many feature class, i want to convert features class in these GDBs to shapefiles.&lt;BR /&gt;I need a workflow do this task quickly using modelbuilder&lt;BR /&gt;so is there a way to do this?&lt;/P&gt;</description>
      <pubDate>Thu, 09 Oct 2025 07:45:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/modelbuilder-questions/convert-100-gdb-to-shapefiles/m-p/1656573#M4116</guid>
      <dc:creator>MohamedIsmael</dc:creator>
      <dc:date>2025-10-09T07:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: convert 100 GDB to shapefiles</title>
      <link>https://community.esri.com/t5/modelbuilder-questions/convert-100-gdb-to-shapefiles/m-p/1656621#M4117</link>
      <description>&lt;P&gt;You could make a model with an iterator (iterate feature classes) to iterate over all the feature classes in one geodatabase, set it up with input and output parameters (input p= GDB name; output p = folder for shapefiles), making a model tool. Then, once you got that working correctly on a single GDB, you could embed that tool in another model, using another iterator to iterate over the geodatabases and process each in turn.&lt;/P&gt;&lt;P&gt;See:&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/analysis/geoprocessing/modelbuilder/create-a-model-tool.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/help/analysis/geoprocessing/modelbuilder/create-a-model-tool.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/analysis/geoprocessing/modelbuilder/working-with-iterate-feature-classes.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/help/analysis/geoprocessing/modelbuilder/working-with-iterate-feature-classes.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/analysis/geoprocessing/modelbuilder/iterators-for-looping.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/help/analysis/geoprocessing/modelbuilder/iterators-for-looping.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/modelbuilder-toolbox/iterate-feature-classes.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/tool-reference/modelbuilder-toolbox/iterate-feature-classes.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/modelbuilder-toolbox/iterate-workspaces.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/tool-reference/modelbuilder-toolbox/iterate-workspaces.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/modelbuilder-toolbox/examples-of-using-iterators-in-modelbuilder.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/tool-reference/modelbuilder-toolbox/examples-of-using-iterators-in-modelbuilder.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;You could also do this with Python, see this tutorial as an example of processing all of the feature classes in a geodatabase.&lt;/P&gt;&lt;P&gt;&lt;A href="https://learn.arcgis.com/en/projects/automate-a-geoprocessing-workflow-with-python/" target="_blank"&gt;https://learn.arcgis.com/en/projects/automate-a-geoprocessing-workflow-with-python/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Oct 2025 12:38:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/modelbuilder-questions/convert-100-gdb-to-shapefiles/m-p/1656621#M4117</guid>
      <dc:creator>BobBooth1</dc:creator>
      <dc:date>2025-10-09T12:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: convert 100 GDB to shapefiles</title>
      <link>https://community.esri.com/t5/modelbuilder-questions/convert-100-gdb-to-shapefiles/m-p/1656897#M4118</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;A href="https://community.esri.com/t5/user/viewprofilepage/user-id/95621" target="_self"&gt;&lt;SPAN class=""&gt;BobBooth1&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;BR /&gt;i created two models&lt;BR /&gt;-Main Model =&amp;gt; contain&amp;nbsp;Iterate Workspaces + Sub model&lt;BR /&gt;- Sub model =&amp;gt; contain&amp;nbsp;Iterate Feature Classes + Copy features&lt;BR /&gt;the final output cretae only one feature class from each DB&lt;BR /&gt;output of copy features =&amp;gt; test_%Name%_%Name (2)% to take name of the DB and Feature class but&amp;nbsp;the final output cretae only one feature class from each DB&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Oct 2025 21:22:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/modelbuilder-questions/convert-100-gdb-to-shapefiles/m-p/1656897#M4118</guid>
      <dc:creator>MohamedIsmael</dc:creator>
      <dc:date>2025-10-09T21:22:53Z</dc:date>
    </item>
    <item>
      <title>Re: convert 100 GDB to shapefiles</title>
      <link>https://community.esri.com/t5/modelbuilder-questions/convert-100-gdb-to-shapefiles/m-p/1657062#M4119</link>
      <description>&lt;P&gt;I think you are on the right track - if you are only getting one output from each GDB I suspect that the name is always the same, and each feature class is exported with that name, overwriting the previous one.&lt;/P&gt;&lt;P&gt;That suggests that the inline variable substitution is failing in some way.&lt;/P&gt;&lt;P&gt;I would rename the variables to something like Wname and FCname. You may need to use Calculate Value (&lt;A href="https://pro.arcgis.com/en/pro-app/3.4/tool-reference/modelbuilder-toolbox/calculate-value.htm)" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/3.4/tool-reference/modelbuilder-toolbox/calculate-value.htm)&lt;/A&gt;&amp;nbsp;to concatenate the two variables into a third to use in the output feature class name.&lt;/P&gt;&lt;P&gt;You can use a precondition (&lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/analysis/geoprocessing/modelbuilder/using-preconditions.htm)" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/help/analysis/geoprocessing/modelbuilder/using-preconditions.htm) &lt;/A&gt;to ensure the calculation occurs before the export step.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Oct 2025 12:25:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/modelbuilder-questions/convert-100-gdb-to-shapefiles/m-p/1657062#M4119</guid>
      <dc:creator>BobBooth1</dc:creator>
      <dc:date>2025-10-10T12:25:24Z</dc:date>
    </item>
  </channel>
</rss>

