<?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: arcpy: How to select missing records in a related table?? in Developers Questions</title>
    <link>https://community.esri.com/t5/developers-questions/arcpy-how-to-select-missing-records-in-a-related/m-p/179227#M1080</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="" style="color: #858c93; border: 0px; font-weight: inherit; font-size: 13px;"&gt;#SOLVED WITH THIS SCRIPT 
&lt;A class="link-titled" href="https://gis.stackexchange.com/questions/50287/efficiently-selecting-related-records-using-arcpy" title="https://gis.stackexchange.com/questions/50287/efficiently-selecting-related-records-using-arcpy" rel="nofollow noopener noreferrer" target="_blank"&gt;enterprise geodatabase - Efficiently selecting related records using ArcPy? - Geographic Information Systems Stack Excha…&lt;/A&gt;&amp;nbsp;
its the big one at the bottom of the page.
IF YOU ARE LOOKING, SIMPLY ADD YOUR FEATURES AND TABLES TO THE VARIABLES
ON A FURTHER NOTE, I AM WORKING IN A VERSIONED ENVIRONMENT SO I HAD TO USE BOTH: 
arcpy.MakeFeatureLayer_management and arcpy.MakeTableView_management to accompany my script. 
I am so happy with this and must thank the people who wrote this:&amp;nbsp; 
from here i was able to switch the selection to show my non connected records and print them, the next step 
is to have it export to an excel sheet. so exciting!! &lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 09:10:36 GMT</pubDate>
    <dc:creator>StudentFernie</dc:creator>
    <dc:date>2021-12-11T09:10:36Z</dc:date>
    <item>
      <title>arcpy: How to select missing records in a related table??</title>
      <link>https://community.esri.com/t5/developers-questions/arcpy-how-to-select-missing-records-in-a-related/m-p/179226#M1079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok so here is my deal; I am working in an SDE, I have a feature Class of civic address points and these points have a one to many link table also in the SDE. This table is linked by a roll number.&amp;nbsp; Some points are not in the table and some table records are not in the points.&amp;nbsp; What I want top do is have a script that selects all the related records in the link table, switch the selection so the script will then print the non related records by their unique identifier. The purpose of this is to find what records in the link table require points and vice versa.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need help finding a way to select what records have a relationship.&lt;/P&gt;&lt;P&gt;Ive tried all of these and many more but I cant figure it out:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://gis.stackexchange.com/questions/50287/efficiently-selecting-related-records-using-arcpy" title="https://gis.stackexchange.com/questions/50287/efficiently-selecting-related-records-using-arcpy"&gt;enterprise geodatabase - Efficiently selecting related records using ArcPy? - Geographic Information Systems Stack Excha…&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/thread/88195"&gt;Select Related Records&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://tutel.me/c/gis/questions/50287/efficiently+selecting+related+records+using+arcpy" title="https://tutel.me/c/gis/questions/50287/efficiently+selecting+related+records+using+arcpy"&gt;https://tutel.me/c/gis/questions/50287/efficiently+selecting+related+records+using+arcpy&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I basically want to do is utilize something like that nice little Select related records button in the attribute table but in python. The reason I require this script is so less "GIS savvy" people in the organization will be able to track down this missing information.&amp;nbsp;&lt;/P&gt;&lt;P&gt;all help and assistance is greatly appreciated&lt;/P&gt;&lt;P&gt;thank you.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2018 16:08:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/arcpy-how-to-select-missing-records-in-a-related/m-p/179226#M1079</guid>
      <dc:creator>StudentFernie</dc:creator>
      <dc:date>2018-10-31T16:08:23Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy: How to select missing records in a related table??</title>
      <link>https://community.esri.com/t5/developers-questions/arcpy-how-to-select-missing-records-in-a-related/m-p/179227#M1080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="" style="color: #858c93; border: 0px; font-weight: inherit; font-size: 13px;"&gt;#SOLVED WITH THIS SCRIPT 
&lt;A class="link-titled" href="https://gis.stackexchange.com/questions/50287/efficiently-selecting-related-records-using-arcpy" title="https://gis.stackexchange.com/questions/50287/efficiently-selecting-related-records-using-arcpy" rel="nofollow noopener noreferrer" target="_blank"&gt;enterprise geodatabase - Efficiently selecting related records using ArcPy? - Geographic Information Systems Stack Excha…&lt;/A&gt;&amp;nbsp;
its the big one at the bottom of the page.
IF YOU ARE LOOKING, SIMPLY ADD YOUR FEATURES AND TABLES TO THE VARIABLES
ON A FURTHER NOTE, I AM WORKING IN A VERSIONED ENVIRONMENT SO I HAD TO USE BOTH: 
arcpy.MakeFeatureLayer_management and arcpy.MakeTableView_management to accompany my script. 
I am so happy with this and must thank the people who wrote this:&amp;nbsp; 
from here i was able to switch the selection to show my non connected records and print them, the next step 
is to have it export to an excel sheet. so exciting!! &lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 09:10:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/arcpy-how-to-select-missing-records-in-a-related/m-p/179227#M1080</guid>
      <dc:creator>StudentFernie</dc:creator>
      <dc:date>2021-12-11T09:10:36Z</dc:date>
    </item>
  </channel>
</rss>

