<?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: ArcSDE spatial view problem in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/arcsde-spatial-view-problem/m-p/720166#M40842</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm not a fan of having multiple copies of the same data. In a perfect world you could&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;have the view changed so it contained a unique key which is seen by ArcSDE as INT32&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[e.g., NUMBER(38) or NUMBER(10)]. If you don't need realtime access to changes you &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;can create a table which contains the natural compound key to the many view, plus a &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;unique ID, and drive the view access through this table (updating the table with a regular&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;process which identifies INSERT and DELETE requirements).&amp;nbsp; Or you can just configure &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;a relationship class (ArcView can read them but it takes Editor or higher to create one).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- V&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Apr 2011 11:27:55 GMT</pubDate>
    <dc:creator>VinceAngelo</dc:creator>
    <dc:date>2011-04-07T11:27:55Z</dc:date>
    <item>
      <title>ArcSDE spatial view problem</title>
      <link>https://community.esri.com/t5/data-management-questions/arcsde-spatial-view-problem/m-p/720163#M40839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi All,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm running ArcSDE 9.3.1 on Oracle 10g.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have a spatial view, created with sdetable -o create_view, from a feature class and a table. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have one feature in the feature class and 3 corresponding records for it in the table.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;After I create the view, in Oraccle it show 3 records (which is normal and correct), all with same geometry.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But when I load it in ArcCatalog or ArcMap, it show only one record (the first), the other 2, with duplicate geometry are not shown. The view, by default, it's made with INNER JOIN.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Has someone any idea why that's happening?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I really have to shown also records with duplicate geometry, even if they are overlapping. I can have the same parcel belonging to 2 groups, in the same time.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Andrei Gosman&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Apr 2011 06:15:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/arcsde-spatial-view-problem/m-p/720163#M40839</guid>
      <dc:creator>AndreiGosman</dc:creator>
      <dc:date>2011-04-07T06:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: ArcSDE spatial view problem</title>
      <link>https://community.esri.com/t5/data-management-questions/arcsde-spatial-view-problem/m-p/720164#M40840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;ArcGIS requires that ArcSDE layers have unique objectid values.&amp;nbsp; When you construct&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;a one-to-many view, you risk breaking that requirement if you are not careful.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;There are two solutions: If you have ArcEditor or ArcInfo you can create a relationship&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;class to manage the 1:M relationshp outside a view, or you can create a view that&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;preserves the objectid uniqueness requirement by adding a USER-set or SDE-set&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;objectid column on the many side, and referring to that in the create_view column list.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- V&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Apr 2011 10:23:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/arcsde-spatial-view-problem/m-p/720164#M40840</guid>
      <dc:creator>VinceAngelo</dc:creator>
      <dc:date>2011-04-07T10:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: ArcSDE spatial view problem</title>
      <link>https://community.esri.com/t5/data-management-questions/arcsde-spatial-view-problem/m-p/720165#M40841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you for your answer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;My problem seems to be a bit more complicated. I've figured out the part with objectid, but my "many" side is view created in Oracle, outside ArcSDE and I cannot register it to geodatabase (error: not supported on view).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I think the only solution would be to recreate all tables for the "many" view in ArcCatalog and then recreate the "many" view with objectid. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;That would be my idea&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Apr 2011 10:38:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/arcsde-spatial-view-problem/m-p/720165#M40841</guid>
      <dc:creator>AndreiGosman</dc:creator>
      <dc:date>2011-04-07T10:38:07Z</dc:date>
    </item>
    <item>
      <title>Re: ArcSDE spatial view problem</title>
      <link>https://community.esri.com/t5/data-management-questions/arcsde-spatial-view-problem/m-p/720166#M40842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm not a fan of having multiple copies of the same data. In a perfect world you could&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;have the view changed so it contained a unique key which is seen by ArcSDE as INT32&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[e.g., NUMBER(38) or NUMBER(10)]. If you don't need realtime access to changes you &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;can create a table which contains the natural compound key to the many view, plus a &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;unique ID, and drive the view access through this table (updating the table with a regular&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;process which identifies INSERT and DELETE requirements).&amp;nbsp; Or you can just configure &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;a relationship class (ArcView can read them but it takes Editor or higher to create one).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- V&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Apr 2011 11:27:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/arcsde-spatial-view-problem/m-p/720166#M40842</guid>
      <dc:creator>VinceAngelo</dc:creator>
      <dc:date>2011-04-07T11:27:55Z</dc:date>
    </item>
    <item>
      <title>Re: ArcSDE spatial view problem</title>
      <link>https://community.esri.com/t5/data-management-questions/arcsde-spatial-view-problem/m-p/720167#M40843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Unfortunately, I need live data.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I've managed to put in the "many" side an uniqueid (rownum) to use it as OBJECTID, but in the FC side I have GlobalID and ArcSDE seems to ignore OBJECTID when having GlobalID, still not showing duplicate entries&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks anyway for your support&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Apr 2011 08:09:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/arcsde-spatial-view-problem/m-p/720167#M40843</guid>
      <dc:creator>AndreiGosman</dc:creator>
      <dc:date>2011-04-08T08:09:07Z</dc:date>
    </item>
    <item>
      <title>Re: ArcSDE spatial view problem</title>
      <link>https://community.esri.com/t5/data-management-questions/arcsde-spatial-view-problem/m-p/720168#M40844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;No, you cannot use ROWNUM. The value must uniquely represent the row, not any row&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;returned in some order. This is necessary to tie the attribute table to the map display&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(click on one, flash in the other).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You should drop out the UUID column from the view.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Relationship classes exist to resolve the 1:M parcel/owner problem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- V&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Apr 2011 10:11:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/arcsde-spatial-view-problem/m-p/720168#M40844</guid>
      <dc:creator>VinceAngelo</dc:creator>
      <dc:date>2011-04-08T10:11:52Z</dc:date>
    </item>
    <item>
      <title>Re: ArcSDE spatial view problem</title>
      <link>https://community.esri.com/t5/data-management-questions/arcsde-spatial-view-problem/m-p/720169#M40845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Can you please go into details,please, with relationships topic regarding this problem?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Apr 2011 10:25:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/arcsde-spatial-view-problem/m-p/720169#M40845</guid>
      <dc:creator>AndreiGosman</dc:creator>
      <dc:date>2011-04-08T10:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: ArcSDE spatial view problem</title>
      <link>https://community.esri.com/t5/data-management-questions/arcsde-spatial-view-problem/m-p/720170#M40846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//004t00000006000000.htm"&gt;documentation&lt;/A&gt;&lt;SPAN&gt; is much better than any explanation I could provide.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- V&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Apr 2011 10:50:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/arcsde-spatial-view-problem/m-p/720170#M40846</guid>
      <dc:creator>VinceAngelo</dc:creator>
      <dc:date>2011-04-08T10:50:21Z</dc:date>
    </item>
  </channel>
</rss>

