<?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: Cannot Create SDE View 10.4.1 in Geodatabase Questions</title>
    <link>https://community.esri.com/t5/geodatabase-questions/cannot-create-sde-view-10-4-1/m-p/721830#M134</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was able to make the view using Toad, so there must be some syntax issue with the way I am using the 'Create View' tool in catalog. Can anyone give me a working example on how to create a view with that tool?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Oct 2016 19:00:23 GMT</pubDate>
    <dc:creator>MarkMcCart</dc:creator>
    <dc:date>2016-10-03T19:00:23Z</dc:date>
    <item>
      <title>Cannot Create SDE View 10.4.1</title>
      <link>https://community.esri.com/t5/geodatabase-questions/cannot-create-sde-view-10-4-1/m-p/721827#M131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to create a view in our Oracle 12C SDE instance. I've tried a Python script, the Create View Tool in ArcCatalog and CREATE NEW&amp;gt;View by right-clicking in ArcCatalog and I get the following errors:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ORA-00928: missing SELECT keyword&lt;/P&gt;&lt;P&gt;ORA -00942: table or view does not exist. DBMS table not found&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are using ArcGIS 10.4.1 and SDE 10.4.1 on an Oracle 12C instance. Our geometry type is ST_Geometry. The view I am trying to create has point geometry. The script I am using inside the 'CREATE NEW&amp;gt;VIEW' in ArcCatalog is:&lt;/P&gt;&lt;P&gt;CREATE VIEW REALTIME_CRUMB_V55&lt;BR /&gt; AS SELECT (OBJECTID, LABEL, LOGDT, SHAPE)&lt;BR /&gt; FROM schemaowner.TRUCK_HISTORY_3HR&lt;BR /&gt; WHERE OBJECTID &amp;gt; 0;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am logged in as 'schemaowner' when I try to create the view so I know there's not a privilege issue. I've also confirmed that the 'schemaowner' has 'CREATE_VIEW' privilege granted to it. I've also confirmed that our st_shapelib.dll file and path are confirmed correct in Oracle.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2016 16:23:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/cannot-create-sde-view-10-4-1/m-p/721827#M131</guid>
      <dc:creator>MarkMcCart</dc:creator>
      <dc:date>2016-10-03T16:23:17Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot Create SDE View 10.4.1</title>
      <link>https://community.esri.com/t5/geodatabase-questions/cannot-create-sde-view-10-4-1/m-p/721828#M132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When creating views using the Create View tool, only the select statement needs to be passed. The semi-colon is also going to throw an error and needs to be removed.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, just try this part:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;SELECT (OBJECTID, LABEL, LOGDT, SHAPE)&lt;/SPAN&gt;&lt;BR style="background-color: #ffffff;" /&gt;&lt;SPAN style="background-color: #ffffff;"&gt;FROM schemaowner.TRUCK_HISTORY_3HR&lt;/SPAN&gt;&lt;BR style="background-color: #ffffff;" /&gt;&lt;SPAN style="background-color: #ffffff;"&gt;WHERE OBJECTID &amp;gt; 0&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2016 17:01:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/cannot-create-sde-view-10-4-1/m-p/721828#M132</guid>
      <dc:creator>ChristianWells</dc:creator>
      <dc:date>2016-10-03T17:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot Create SDE View 10.4.1</title>
      <link>https://community.esri.com/t5/geodatabase-questions/cannot-create-sde-view-10-4-1/m-p/721829#M133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried removing the semicolon in the Create View tool like this:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/238650_pastedImage_2.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And it threw the following Errors:&lt;/P&gt;&lt;P&gt;ORA-00936: missing expression - DBMS table not found&lt;/P&gt;&lt;P&gt;ORA-04043: object schemaowner.REALTIME_CRUMBS does not exist.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2016 17:17:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/cannot-create-sde-view-10-4-1/m-p/721829#M133</guid>
      <dc:creator>MarkMcCart</dc:creator>
      <dc:date>2016-10-03T17:17:48Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot Create SDE View 10.4.1</title>
      <link>https://community.esri.com/t5/geodatabase-questions/cannot-create-sde-view-10-4-1/m-p/721830#M134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was able to make the view using Toad, so there must be some syntax issue with the way I am using the 'Create View' tool in catalog. Can anyone give me a working example on how to create a view with that tool?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2016 19:00:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/cannot-create-sde-view-10-4-1/m-p/721830#M134</guid>
      <dc:creator>MarkMcCart</dc:creator>
      <dc:date>2016-10-03T19:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot Create SDE View 10.4.1</title>
      <link>https://community.esri.com/t5/geodatabase-questions/cannot-create-sde-view-10-4-1/m-p/721831#M135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This simple select works for me:&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="238736" alt="" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/238736_2016-10-03_13-06-09.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EDIT: This is from the New &amp;gt; View context menu. However, the GP tools works with the same inputs for me.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2016 20:07:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/cannot-create-sde-view-10-4-1/m-p/721831#M135</guid>
      <dc:creator>ChristianWells</dc:creator>
      <dc:date>2016-10-03T20:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot Create SDE View 10.4.1</title>
      <link>https://community.esri.com/t5/geodatabase-questions/cannot-create-sde-view-10-4-1/m-p/721832#M136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks! That worked.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2016 20:12:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/cannot-create-sde-view-10-4-1/m-p/721832#M136</guid>
      <dc:creator>MarkMcCart</dc:creator>
      <dc:date>2016-10-03T20:12:36Z</dc:date>
    </item>
  </channel>
</rss>

