<?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: How to find a field in all FC inside a FGDB in Geodatabase Questions</title>
    <link>https://community.esri.com/t5/geodatabase-questions/how-to-find-a-field-in-all-fc-inside-a-fgdb/m-p/1682014#M9764</link>
    <description>&lt;P&gt;Using the Generate Schema Report tool to create an xlsx schema report gives you a table that lets you answer this question without needing to write any Python:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RobertKrisher_0-1770214142557.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/147869iEEFD8F0D61BA649D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RobertKrisher_0-1770214142557.png" alt="RobertKrisher_0-1770214142557.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 04 Feb 2026 14:09:08 GMT</pubDate>
    <dc:creator>RobertKrisher</dc:creator>
    <dc:date>2026-02-04T14:09:08Z</dc:date>
    <item>
      <title>How to find a field in all FC inside a FGDB</title>
      <link>https://community.esri.com/t5/geodatabase-questions/how-to-find-a-field-in-all-fc-inside-a-fgdb/m-p/1681834#M9762</link>
      <description>&lt;P&gt;Good afternoon,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to identity all the feature classes that use a specific field in a FGDB?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Feb 2026 18:56:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/how-to-find-a-field-in-all-fc-inside-a-fgdb/m-p/1681834#M9762</guid>
      <dc:creator>SanchezNuñez</dc:creator>
      <dc:date>2026-02-03T18:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to find a field in all FC inside a FGDB</title>
      <link>https://community.esri.com/t5/geodatabase-questions/how-to-find-a-field-in-all-fc-inside-a-fgdb/m-p/1681858#M9763</link>
      <description>&lt;P&gt;You have to go through them individually.&lt;/P&gt;&lt;P&gt;Something like (untested)&lt;/P&gt;&lt;LI-CODE lang="python"&gt;gdb = r"your path to gbd"
arcpy.env.workspace = gdb
fieldName = "Martians_Present"
usesFields = []

for fc in arcpy.ListFeatureClasses():
    fields = [f.name for f in arcpy.ListFields(fc)]
    if fieldName in fields:
        usesFields.append(fc)

print(usesFields)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Feb 2026 20:01:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/how-to-find-a-field-in-all-fc-inside-a-fgdb/m-p/1681858#M9763</guid>
      <dc:creator>AlfredBaldenweck</dc:creator>
      <dc:date>2026-02-03T20:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to find a field in all FC inside a FGDB</title>
      <link>https://community.esri.com/t5/geodatabase-questions/how-to-find-a-field-in-all-fc-inside-a-fgdb/m-p/1682014#M9764</link>
      <description>&lt;P&gt;Using the Generate Schema Report tool to create an xlsx schema report gives you a table that lets you answer this question without needing to write any Python:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RobertKrisher_0-1770214142557.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/147869iEEFD8F0D61BA649D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RobertKrisher_0-1770214142557.png" alt="RobertKrisher_0-1770214142557.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Feb 2026 14:09:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/how-to-find-a-field-in-all-fc-inside-a-fgdb/m-p/1682014#M9764</guid>
      <dc:creator>RobertKrisher</dc:creator>
      <dc:date>2026-02-04T14:09:08Z</dc:date>
    </item>
  </channel>
</rss>

