<?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: simple sde.st_buffer spatial view, ORA errors in Geodatabase Questions</title>
    <link>https://community.esri.com/t5/geodatabase-questions/simple-sde-st-buffer-spatial-view-ora-errors/m-p/838081#M4522</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/35216" target="_blank"&gt;Tobias&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://support.esri.com/en/technical-article/000012391" title="http://support.esri.com/en/technical-article/000012391" rel="nofollow noopener noreferrer" target="_blank"&gt;Error: ORA-06598: insufficient INHERIT PRIVILEGES privilege" during Oracle 12c Data Pump import&lt;/A&gt;&amp;nbsp; this Article mentions about database Restore issues, so it should not be related to your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I mentioned in my first Post, I tried the same SQL that you are using and it works as expected and I can see the View in ArcMap. So using it in ArcGIS Server should work as well.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;SELECT&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;a&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;OBJECTID&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; sde&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;st_buffer &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;a&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;SHAPE&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;65&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; SHAPE
&lt;SPAN class="keyword token"&gt;FROM&lt;/SPAN&gt; sde&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Testdata &lt;SPAN class="number token"&gt;a&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;WHERE&lt;/SPAN&gt; OBJECTID &lt;SPAN class="operator token"&gt;IS&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;NOT&lt;/SPAN&gt; &lt;SPAN class="token boolean"&gt;NULL&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I used the above and it works perfectly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was using Oracle 11.2.0.4 and a 10.2.1 geodatabase for the quick test, which was readily available to me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 10:11:42 GMT</pubDate>
    <dc:creator>Asrujit_SenGupta</dc:creator>
    <dc:date>2021-12-12T10:11:42Z</dc:date>
    <item>
      <title>simple sde.st_buffer spatial view, ORA errors</title>
      <link>https://community.esri.com/t5/geodatabase-questions/simple-sde-st-buffer-spatial-view-ora-errors/m-p/838078#M4519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to create a spatial view that draws a buffer around my input features, like this:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;SELECT&lt;/SPAN&gt; 
&lt;SPAN class="number token"&gt;a&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;OBJECTID&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
sde&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;st_buffer &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;a&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;SHAPE&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;33&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; SHAPE
&lt;SPAN class="keyword token"&gt;FROM&lt;/SPAN&gt; schemaname&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;tablename &lt;SPAN class="number token"&gt;a&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;WHERE&lt;/SPAN&gt; OBJECTID &lt;SPAN class="operator token"&gt;IS&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;NOT&lt;/SPAN&gt; &lt;SPAN class="token boolean"&gt;NULL&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;I get the following errors:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/377190_pastedImage_1.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/377191_pastedImage_2.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;Any ideas what the problem could be?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Geodatabase version 10.3; Oracle version 12.1.0.2. Configured according to &lt;A href="http://desktop.arcgis.com/en/arcmap/10.3/manage-data/gdbs-in-oracle/configure-oracle-extproc.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;this doc&lt;/A&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 10:11:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/simple-sde-st-buffer-spatial-view-ora-errors/m-p/838078#M4519</guid>
      <dc:creator>TobiasFimpel</dc:creator>
      <dc:date>2021-12-12T10:11:37Z</dc:date>
    </item>
    <item>
      <title>Re: simple sde.st_buffer spatial view, ORA errors</title>
      <link>https://community.esri.com/t5/geodatabase-questions/simple-sde-st-buffer-spatial-view-ora-errors/m-p/838079#M4520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Make sure the Extproc was configured correctly. I just ran a quick test and it is working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Connect as SDE in SQLPlus and execute the below query. If it gives you an error instead of returning a result as below, the Extproc has not been configured correctly then:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;SQL&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;select&lt;/SPAN&gt; sde&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ST_AsText&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;SDE&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ST_Geometry&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'POINT (10 10)'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; dual&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

SDE&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ST_ASTEXT&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;SDE&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ST_GEOMETRY&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'POINT(1010)'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;--------------------------------------------------------------------------------&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;POINT&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;10.00000000&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;10.00000000&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;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/community/gis/managing-data?sr=search&amp;amp;searchId=f8869f23-d604-4c6c-8ccc-7f8fdb05ba21&amp;amp;searchIndex=0" target="_blank"&gt;https://community.esri.com/community/gis/managing-data?sr=search&amp;amp;searchId=f8869f23-d604-4c6c-8ccc-7f8fdb05ba21&amp;amp;searchIndex=0&lt;/A&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 10:11:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/simple-sde-st-buffer-spatial-view-ora-errors/m-p/838079#M4520</guid>
      <dc:creator>Asrujit_SenGupta</dc:creator>
      <dc:date>2021-12-12T10:11:40Z</dc:date>
    </item>
    <item>
      <title>Re: simple sde.st_buffer spatial view, ORA errors</title>
      <link>https://community.esri.com/t5/geodatabase-questions/simple-sde-st-buffer-spatial-view-ora-errors/m-p/838080#M4521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your reply Asrujit. I found this Esri doc. that describes a configuration consideration with Oracle 12:&amp;nbsp;&lt;A class="" data-saferedirecturl="https://www.google.com/url?hl=en&amp;amp;q=http://support.esri.com/en/technical-article/000012391&amp;amp;source=gmail&amp;amp;ust=1508353524325000&amp;amp;usg=AFQjCNE-DSFZONVafTpgmFX5DEH7rI2SHA" href="http://support.esri.com/en/technical-article/000012391" style="color: #1155cc; background-color: #ffffff; font-size: 12.8px;" target="_blank"&gt;http://support.esri.com/en/technical-article/000012391&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Your test query (...from dual) works now. My view still fails with the same error, but I'm actually not sure anymore that Esri can create new geometries (e.g. buffer) via spatial views that I can then consume in ArcMap/ArcGIS Server.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Oct 2017 19:33:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/simple-sde-st-buffer-spatial-view-ora-errors/m-p/838080#M4521</guid>
      <dc:creator>TobiasFimpel</dc:creator>
      <dc:date>2017-10-17T19:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: simple sde.st_buffer spatial view, ORA errors</title>
      <link>https://community.esri.com/t5/geodatabase-questions/simple-sde-st-buffer-spatial-view-ora-errors/m-p/838081#M4522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/35216" target="_blank"&gt;Tobias&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://support.esri.com/en/technical-article/000012391" title="http://support.esri.com/en/technical-article/000012391" rel="nofollow noopener noreferrer" target="_blank"&gt;Error: ORA-06598: insufficient INHERIT PRIVILEGES privilege" during Oracle 12c Data Pump import&lt;/A&gt;&amp;nbsp; this Article mentions about database Restore issues, so it should not be related to your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I mentioned in my first Post, I tried the same SQL that you are using and it works as expected and I can see the View in ArcMap. So using it in ArcGIS Server should work as well.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;SELECT&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;a&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;OBJECTID&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; sde&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;st_buffer &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;a&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;SHAPE&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;65&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; SHAPE
&lt;SPAN class="keyword token"&gt;FROM&lt;/SPAN&gt; sde&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Testdata &lt;SPAN class="number token"&gt;a&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;WHERE&lt;/SPAN&gt; OBJECTID &lt;SPAN class="operator token"&gt;IS&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;NOT&lt;/SPAN&gt; &lt;SPAN class="token boolean"&gt;NULL&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I used the above and it works perfectly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was using Oracle 11.2.0.4 and a 10.2.1 geodatabase for the quick test, which was readily available to me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 10:11:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/simple-sde-st-buffer-spatial-view-ora-errors/m-p/838081#M4522</guid>
      <dc:creator>Asrujit_SenGupta</dc:creator>
      <dc:date>2021-12-12T10:11:42Z</dc:date>
    </item>
    <item>
      <title>Re: simple sde.st_buffer spatial view, ORA errors</title>
      <link>https://community.esri.com/t5/geodatabase-questions/simple-sde-st-buffer-spatial-view-ora-errors/m-p/838082#M4523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, so it is possible. Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had to 'GRANT INHERENT PRIVILEGES ON ...' to get even your simple test query to work. Now I guess I have to look further....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Oct 2017 19:50:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/simple-sde-st-buffer-spatial-view-ora-errors/m-p/838082#M4523</guid>
      <dc:creator>TobiasFimpel</dc:creator>
      <dc:date>2017-10-17T19:50:52Z</dc:date>
    </item>
    <item>
      <title>Re: simple sde.st_buffer spatial view, ORA errors</title>
      <link>https://community.esri.com/t5/geodatabase-questions/simple-sde-st-buffer-spatial-view-ora-errors/m-p/838083#M4524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So this is how it looks in ArcMap and I believe this is what you wanted..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/380263_Capture.JPG" style="width: 513px; height: 383px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Oct 2017 20:09:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/simple-sde-st-buffer-spatial-view-ora-errors/m-p/838083#M4524</guid>
      <dc:creator>Asrujit_SenGupta</dc:creator>
      <dc:date>2017-10-17T20:09:55Z</dc:date>
    </item>
    <item>
      <title>Re: simple sde.st_buffer spatial view, ORA errors</title>
      <link>https://community.esri.com/t5/geodatabase-questions/simple-sde-st-buffer-spatial-view-ora-errors/m-p/838084#M4525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just to close this thread: it turned out that our&amp;nbsp;&lt;SPAN style="color: #222222; background-color: #ffffff; font-size: 12.8px;"&gt;libst_shapelib file was quite old. After we replaced it with a more recent one the error does not appear.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Oct 2017 02:59:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/simple-sde-st-buffer-spatial-view-ora-errors/m-p/838084#M4525</guid>
      <dc:creator>TobiasFimpel</dc:creator>
      <dc:date>2017-10-28T02:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: simple sde.st_buffer spatial view, ORA errors</title>
      <link>https://community.esri.com/t5/geodatabase-questions/simple-sde-st-buffer-spatial-view-ora-errors/m-p/838085#M4526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for sharing the resolution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2017 14:01:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/simple-sde-st-buffer-spatial-view-ora-errors/m-p/838085#M4526</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2017-10-30T14:01:43Z</dc:date>
    </item>
  </channel>
</rss>

