<?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: Listing Topology Rules Used (in user friendly format) in Geodatabase Questions</title>
    <link>https://community.esri.com/t5/geodatabase-questions/listing-topology-rules-used-in-user-friendly/m-p/1184393#M7707</link>
    <description>&lt;P&gt;This worked great! Exactly what i was trying to do, thank you!&lt;/P&gt;</description>
    <pubDate>Mon, 20 Jun 2022 17:30:26 GMT</pubDate>
    <dc:creator>LisaDavidson</dc:creator>
    <dc:date>2022-06-20T17:30:26Z</dc:date>
    <item>
      <title>Listing Topology Rules Used (in user friendly format)</title>
      <link>https://community.esri.com/t5/geodatabase-questions/listing-topology-rules-used-in-user-friendly/m-p/810615#M3170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have an ArcSDE (SQL) database and Feature Dataset with multiple layers involved in a Topology, with about a dozen rules.&amp;nbsp; I've added a new FC and I'm now working on setting up and modifying the rules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know I can right-click the properties of the topology to see the rules, but I can't expand the properties box to see all three columns in full.&amp;nbsp; &lt;EM&gt;Saving&lt;/EM&gt; the rules creates a binary (non-readable) .rul file.&amp;nbsp; I tried a select-all, copy/paste from the properties window but that does not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know that a dozen rules isn't so much that I couldn't just right them down (which is what I willdo for now), but&lt;STRONG&gt; wondering if anyone has a tool or procedure for converting/viewing the .rul file as a a text file....or any other simple tool.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I figure this question with either be something simple I am missing, someone has a snazzy tool, or not work pursuing, but worth asking in case it's one of the first two.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2017 21:02:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/listing-topology-rules-used-in-user-friendly/m-p/810615#M3170</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2017-08-03T21:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: Listing Topology Rules Used (in user friendly format)</title>
      <link>https://community.esri.com/t5/geodatabase-questions/listing-topology-rules-used-in-user-friendly/m-p/810616#M3171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I will answer and close (unless someone finds an answer) with the answer that it isn't possible (feel free to prove me wrong).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But to summarize, I will include some tips and something that &lt;EM&gt;almost&lt;/EM&gt; got me what I wanted....but really just proved it wasn't possible (maybe with ArcObjects, but I'm not going there).&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;The 10.0 version of the Topology Rules poster &lt;A class="link-titled" href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/001t/pdf/topology_rules_poster.pdf" title="http://help.arcgis.com/en/arcgisdesktop/10.0/help/001t/pdf/topology_rules_poster.pdf" rel="nofollow noopener noreferrer" target="_blank"&gt;http://help.arcgis.com/en/arcgisdesktop/10.0/help/001t/pdf/topology_rules_poster.pdf&lt;/A&gt;&amp;nbsp;&amp;nbsp; which is the last version I could locate...should still be good.&lt;/LI&gt;&lt;LI&gt;&lt;A class="link-titled" href="https://gis.stackexchange.com/questions/129783/list-file-geodatabase-topology" title="https://gis.stackexchange.com/questions/129783/list-file-geodatabase-topology" rel="nofollow noopener noreferrer" target="_blank"&gt;arcgis desktop - List File Geodatabase Topology - Geographic Information Systems Stack Exchange&lt;/A&gt;&amp;nbsp;&amp;nbsp; this pointed me to a arcpy script that would find what the &lt;EM&gt;name&lt;/EM&gt; of the topologies in a dataset.&amp;nbsp; This works well&lt;/LI&gt;&lt;/UL&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; arcpy
&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; os
path &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"C:\ArcGIS\Default.gdb"&lt;/SPAN&gt;

arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;workspace &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; path
gdb_objects &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListDatasets&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;wild_card&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;None&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; feature_type&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'Feature'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Feature datasets are: "&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; str&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;gdb_objects&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;#only feature datasets are here&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; obj &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; gdb_objects&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; fd_path &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; os&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;path&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;join&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;path&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;obj&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;workspace &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; fd_path &lt;SPAN class="comment token"&gt;#get a new workspace pointed to the fd&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; fd_objects &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListDatasets&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;wild_card&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;None&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; feature_type&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;''&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; dataset &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; fd_objects&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;#iterate feature dataset objects&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; desc_dataset &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Describe&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;dataset&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; desc_dataset&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;datasetType &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Topology'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;#finding out whether is topology&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; dataset&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;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It gives the name of the topology, but no other info.&amp;nbsp; But with that, and pointing me to the properties (I'm including 10.3 links)&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/10.3/analyze/arcpy-functions/topology-properties.htm" title="http://desktop.arcgis.com/en/arcmap/10.3/analyze/arcpy-functions/topology-properties.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;Topology properties—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/10.3/analyze/arcpy-functions/dataset-properties.htm" title="http://desktop.arcgis.com/en/arcmap/10.3/analyze/arcpy-functions/dataset-properties.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;Dataset properties—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/10.3/analyze/arcpy-functions/describe.htm" title="http://desktop.arcgis.com/en/arcmap/10.3/analyze/arcpy-functions/describe.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;Describe—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/10.3/analyze/arcpy-functions/featureclass-properties.htm" title="http://desktop.arcgis.com/en/arcmap/10.3/analyze/arcpy-functions/featureclass-properties.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;FeatureClass properties—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I could then list the feature classes that are in the topology&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;pathtoTopology &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;'full path to topology'&lt;/SPAN&gt;
descTopoFC &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Describe&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;pathtoTopology&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"{0}"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;descTopoFC&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;featureClassNames&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;


&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, I could not find anything that would print the FeatureClass, Rule, and 2nd-FeatureClass (if applicable) as shown in the properties.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/365673_pastedImage_7.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, closing this thread.&amp;nbsp; If anyone finds anything, I would be interested, but not worth spending more time on it for me right now.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 09:31:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/listing-topology-rules-used-in-user-friendly/m-p/810616#M3171</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2021-12-12T09:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: Listing Topology Rules Used (in user friendly format)</title>
      <link>https://community.esri.com/t5/geodatabase-questions/listing-topology-rules-used-in-user-friendly/m-p/810617#M3172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to do the same, any ideas how to?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jun 2020 12:31:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/listing-topology-rules-used-in-user-friendly/m-p/810617#M3172</guid>
      <dc:creator>PierreMasson</dc:creator>
      <dc:date>2020-06-29T12:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: Listing Topology Rules Used (in user friendly format)</title>
      <link>https://community.esri.com/t5/geodatabase-questions/listing-topology-rules-used-in-user-friendly/m-p/1163653#M7620</link>
      <description>&lt;P&gt;I was just trying to find an answer to the same question, and I found a way to create this by Topology.&lt;/P&gt;&lt;P&gt;So, do the following:&lt;/P&gt;&lt;P&gt;1) add the Topology to ArcMap&lt;BR /&gt;2) right-click the Topology in the Table of Contents and choose Properties&lt;BR /&gt;3) select the Errors tab and click Generate Summary&lt;BR /&gt;4) then click Export to File (this will export the results to a comma-delimited text file)&lt;/P&gt;&lt;P&gt;5) Open Excel and create a new file&lt;BR /&gt;6) click Data, and choose From Text&lt;BR /&gt;7) select the file and choose Import&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt; within the Text Import Wizard, indicate that the data is delimited by commas and has headers&lt;/P&gt;&lt;P&gt;This will create a nicely formatted Excel spreadsheet with all of the rules and how many errors and exceptions exist.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Apr 2022 19:52:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/listing-topology-rules-used-in-user-friendly/m-p/1163653#M7620</guid>
      <dc:creator>KathrynCliftonGIS</dc:creator>
      <dc:date>2022-04-12T19:52:44Z</dc:date>
    </item>
    <item>
      <title>Re: Listing Topology Rules Used (in user friendly format)</title>
      <link>https://community.esri.com/t5/geodatabase-questions/listing-topology-rules-used-in-user-friendly/m-p/1184393#M7707</link>
      <description>&lt;P&gt;This worked great! Exactly what i was trying to do, thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jun 2022 17:30:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/listing-topology-rules-used-in-user-friendly/m-p/1184393#M7707</guid>
      <dc:creator>LisaDavidson</dc:creator>
      <dc:date>2022-06-20T17:30:26Z</dc:date>
    </item>
  </channel>
</rss>

