<?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: Check if Polygons are equal in SDE in Geodatabase Questions</title>
    <link>https://community.esri.com/t5/geodatabase-questions/check-if-polygons-are-equal-in-sde/m-p/702110#M15</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try the code by @Bruce Harold. This code compares two feature classes and produces three files adds, deletes, no change.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/thread/162389"&gt;Python hashlib to compare shapefiles\feature classes&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Jan 2016 14:13:14 GMT</pubDate>
    <dc:creator>WesMiller</dc:creator>
    <dc:date>2016-01-19T14:13:14Z</dc:date>
    <item>
      <title>Check if Polygons are equal in SDE</title>
      <link>https://community.esri.com/t5/geodatabase-questions/check-if-polygons-are-equal-in-sde/m-p/702107#M12</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a problem with comparing polygon objects in an (Oracle)SDE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to compare two polygon feature classes that contain the same data from different points in time.&lt;/P&gt;&lt;P&gt;Featureclass "A" contains the "official" polygons from a local government and is delievered to us on a 3-month basis.&lt;/P&gt;&lt;P&gt;Featureclass "B" contains the same set of polygons, but some of them may have been edited by our client.&lt;/P&gt;&lt;P&gt;The total amount of polygons is always the same and they share one ID so that you can always find the "partner" objects in the two sets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The job is to find all the polygons that have geometric differences between the two sets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This could be done with ST_Equals or ST_Relate or ST_SymmetricDiff and I tried all of them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Problem:&lt;/P&gt;&lt;P&gt;The featureclass that was edited by my client has been processed in a workflow that includes some topology operations.&lt;/P&gt;&lt;P&gt;During that topology geoprocessing ArcGIS inserts additional vertices in nearly every polygon to be able to conduct the operations.&lt;/P&gt;&lt;P&gt;See the part "Note" at &lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#/na/01mm00000016000000/" title="http://resources.arcgis.com/en/help/main/10.2/index.html#/na/01mm00000016000000/"&gt;ArcGIS Help (10.2, 10.2.1, and 10.2.2)&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Those vertices don't change the geometry of the polygon because they are inserted in the middle of straight border lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you compare the sets "A" and "B" with ST_Equals or ST_Relate or ST_SymmetricDiff after one of them has been "treated" by the topology geoprocessing, there are thousands of "differences" although the polygons aren't really changed but only contain additional vertices.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to compare polygons while ignoring those additional vertices?&lt;/P&gt;&lt;P&gt;One limitation: It needs to be done within an SQL statement on the SDE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for any Idea!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2016 10:06:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/check-if-polygons-are-equal-in-sde/m-p/702107#M12</guid>
      <dc:creator>AmazingMapMan</dc:creator>
      <dc:date>2016-01-19T10:06:57Z</dc:date>
    </item>
    <item>
      <title>Re: Check if Polygons are equal in SDE</title>
      <link>https://community.esri.com/t5/geodatabase-questions/check-if-polygons-are-equal-in-sde/m-p/702108#M13</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not an expert on ST_Geometry opertaionss, but what happens if you use a &lt;A href="http://desktop.arcgis.com/en/desktop/latest/manage-data/using-sql-with-gdbs/st-union.htm" title="http://desktop.arcgis.com/en/desktop/latest/manage-data/using-sql-with-gdbs/st-union.htm"&gt;ST_Union—Help | ArcGIS for Desktop&lt;/A&gt; and check for equivalence of the ID fields in the output? Those records that don't match will represent the changes...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2016 11:53:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/check-if-polygons-are-equal-in-sde/m-p/702108#M13</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2016-01-19T11:53:19Z</dc:date>
    </item>
    <item>
      <title>Re: Check if Polygons are equal in SDE</title>
      <link>https://community.esri.com/t5/geodatabase-questions/check-if-polygons-are-equal-in-sde/m-p/702109#M14</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So the "Find Identical" tool in ArcGIS is not an option?&lt;/P&gt;&lt;P&gt;&lt;A href="http://desktop.arcgis.com/en/desktop/latest/tools/data-management-toolbox/find-identical.htm" title="http://desktop.arcgis.com/en/desktop/latest/tools/data-management-toolbox/find-identical.htm"&gt;Find Identical—Help | ArcGIS for Desktop&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2016 12:44:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/check-if-polygons-are-equal-in-sde/m-p/702109#M14</guid>
      <dc:creator>JoeFlannery</dc:creator>
      <dc:date>2016-01-19T12:44:24Z</dc:date>
    </item>
    <item>
      <title>Re: Check if Polygons are equal in SDE</title>
      <link>https://community.esri.com/t5/geodatabase-questions/check-if-polygons-are-equal-in-sde/m-p/702110#M15</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try the code by @Bruce Harold. This code compares two feature classes and produces three files adds, deletes, no change.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/thread/162389"&gt;Python hashlib to compare shapefiles\feature classes&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2016 14:13:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/check-if-polygons-are-equal-in-sde/m-p/702110#M15</guid>
      <dc:creator>WesMiller</dc:creator>
      <dc:date>2016-01-19T14:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: Check if Polygons are equal in SDE</title>
      <link>https://community.esri.com/t5/geodatabase-questions/check-if-polygons-are-equal-in-sde/m-p/702111#M16</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which version of the SDE/st_shapelib are you using? If I use a WKT example like you mentioned, where there is an extra coordinate on the line between two original points, ST_Equals resolves to true.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;select SDE.ST_EQUALS(
sde.st_geometry('POLYGON ((0 0, 2 0, 2 1, 2 2, 0 2, 0 0))', 0), 
sde.st_geometry('POLYGON ((0 0, 2 0, 2 2, 0 2, 0 0))', 0)) FROM DUAL;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you provide the WKT of the example you have?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 05:31:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/check-if-polygons-are-equal-in-sde/m-p/702111#M16</guid>
      <dc:creator>ChristianWells</dc:creator>
      <dc:date>2021-12-12T05:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: Check if Polygons are equal in SDE</title>
      <link>https://community.esri.com/t5/geodatabase-questions/check-if-polygons-are-equal-in-sde/m-p/702112#M17</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you elaborate on this?&lt;/P&gt;&lt;P&gt;I don't know how to use that in this case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jan 2016 09:42:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/check-if-polygons-are-equal-in-sde/m-p/702112#M17</guid>
      <dc:creator>AmazingMapMan</dc:creator>
      <dc:date>2016-01-20T09:42:59Z</dc:date>
    </item>
    <item>
      <title>Re: Check if Polygons are equal in SDE</title>
      <link>https://community.esri.com/t5/geodatabase-questions/check-if-polygons-are-equal-in-sde/m-p/702113#M18</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sadly this is not for us poor "ArcGIS Standard" guys...&lt;/P&gt;&lt;P&gt;Also I am searching for a solution that can be used within an SQL Statement.&lt;/P&gt;&lt;P&gt;Otherwise I would have to make big changes to the already implemented workflow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks anyway,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jan 2016 09:46:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/check-if-polygons-are-equal-in-sde/m-p/702113#M18</guid>
      <dc:creator>AmazingMapMan</dc:creator>
      <dc:date>2016-01-20T09:46:51Z</dc:date>
    </item>
    <item>
      <title>Re: Check if Polygons are equal in SDE</title>
      <link>https://community.esri.com/t5/geodatabase-questions/check-if-polygons-are-equal-in-sde/m-p/702114#M19</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will test this script.&lt;/P&gt;&lt;P&gt;But I would rather have something that can be used within a SQL statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jan 2016 09:49:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/check-if-polygons-are-equal-in-sde/m-p/702114#M19</guid>
      <dc:creator>AmazingMapMan</dc:creator>
      <dc:date>2016-01-20T09:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: Check if Polygons are equal in SDE</title>
      <link>https://community.esri.com/t5/geodatabase-questions/check-if-polygons-are-equal-in-sde/m-p/702115#M20</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the ST_EQUALS works in your example because the additional vertex is absolutely exact in a straight line with the corner points.&lt;/P&gt;&lt;P&gt;Yet in a "real-world" example, where the lines are not along the coordinate axis and the extra vertex is a tiny bit out of the mathematical straigt line (for example due to rounding) this tool 'fails'.&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;SPAN class="keyword"&gt;select SDE.ST_EQUALS(&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;sde.st_geometry(&lt;SPAN class="string"&gt;'POLYGON ((0 0, 2 0, 2.0001 1, 2 2, 0 2, 0 0))', 0),&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;sde.st_geometry(&lt;SPAN class="string"&gt;'POLYGON ((0 0, 2 0, 2 2, 0 2, 0 0))', 0)) &lt;SPAN class="keyword"&gt;FROM&lt;/SPAN&gt; DUAL;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="string"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="string"&gt;Greetings,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="string"&gt;Stefan&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jan 2016 09:56:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/check-if-polygons-are-equal-in-sde/m-p/702115#M20</guid>
      <dc:creator>AmazingMapMan</dc:creator>
      <dc:date>2016-01-20T09:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: Check if Polygons are equal in SDE</title>
      <link>https://community.esri.com/t5/geodatabase-questions/check-if-polygons-are-equal-in-sde/m-p/702116#M21</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Equivalence usually has a very specific meaning when it comes to geometry:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Same topology type&lt;/LI&gt;&lt;LI&gt;Same number of vertices&lt;/LI&gt;&lt;LI&gt;Same vertex values&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are not looking for an "equal" geometry, but something quite a bit more elastic.&amp;nbsp; The answer could be to use SDE.ST_DIFFERENCE to "subtract" one geometry from the other, and test that for being non-empty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assuming two tables:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;table1:&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; A|POLYGON ((0 0, 0 10, 10 10, 10 0, 0 0))&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; B|POLYGON ((0 10, 10 10, 10 0, 0 0, 0 10))&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; C|POLYGON ((10 10, 10 0, 0 0, 0 10, 10 10))&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;table2:&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; A|POLYGON ((0 0, 0 10, 10 10, 10 0, 0 0))&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; B|POLYGON ((0 10, 5 10, 10 10, 10 5, 10 0, 5 0, 0 0, 0 5, 0 10))&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; C|POLYGON ((0 0, 5 10, 10 0, 0 0))&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;SQL&amp;gt; select sde.st_isempty(sde.st_difference(a.shape,b.shape))
&amp;nbsp; 2&amp;nbsp; from table1 a, table2 b
&amp;nbsp; 3&amp;nbsp; where a.tid = b.tid;

SDE.ST_ISEMPTY(SDE.ST_DIFFERENCE(A.SHAPE,B.SHAPE))
--------------------------------------------------
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Curiously, the Oracle implementation of ST_Equals produces that "forgiving" model&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;SQL&amp;gt;&amp;nbsp; select sde.st_equals(a.shape,b.shape)
&amp;nbsp; 2&amp;nbsp;&amp;nbsp; from table1 a, table2 b
&amp;nbsp; 3&amp;nbsp;&amp;nbsp; where a.tid = b.tid;

SDE.ST_EQUALS(A.SHAPE,B.SHAPE)
------------------------------
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- V&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 05:32:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/check-if-polygons-are-equal-in-sde/m-p/702116#M21</guid>
      <dc:creator>VinceAngelo</dc:creator>
      <dc:date>2021-12-12T05:32:01Z</dc:date>
    </item>
  </channel>
</rss>

