<?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: How to create an SDE View in 10.3 in Developers Questions</title>
    <link>https://community.esri.com/t5/developers-questions/how-to-create-an-sde-view-in-10-3/m-p/627021#M4222</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/message/550059"&gt;How to create an sde view in 10.2.2&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The answer is quite the same. Only that SDE Command line tools have been deprecated at 10.3.x, however it can still be used &lt;STRONG&gt;for now&lt;/STRONG&gt; with an SDE 10.3.x geodatabase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.esri.com/cN/knowledgebase/techarticles/detail/44300" title="http://support.esri.com/cN/knowledgebase/techarticles/detail/44300"&gt;44300 - Can ArcSDE command line tools be used against 10.3 and newer geodatabases?&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Jan 2016 01:35:17 GMT</pubDate>
    <dc:creator>AsrujitSengupta</dc:creator>
    <dc:date>2016-01-20T01:35:17Z</dc:date>
    <item>
      <title>How to create an SDE View in 10.3</title>
      <link>https://community.esri.com/t5/developers-questions/how-to-create-an-sde-view-in-10-3/m-p/627020#M4221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I create an sde view or modify an existing sde view created in 10.0 witn 10.3?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2016 23:51:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/how-to-create-an-sde-view-in-10-3/m-p/627020#M4221</guid>
      <dc:creator>JoseSanchez</dc:creator>
      <dc:date>2016-01-19T23:51:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an SDE View in 10.3</title>
      <link>https://community.esri.com/t5/developers-questions/how-to-create-an-sde-view-in-10-3/m-p/627021#M4222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/message/550059"&gt;How to create an sde view in 10.2.2&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The answer is quite the same. Only that SDE Command line tools have been deprecated at 10.3.x, however it can still be used &lt;STRONG&gt;for now&lt;/STRONG&gt; with an SDE 10.3.x geodatabase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.esri.com/cN/knowledgebase/techarticles/detail/44300" title="http://support.esri.com/cN/knowledgebase/techarticles/detail/44300"&gt;44300 - Can ArcSDE command line tools be used against 10.3 and newer geodatabases?&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jan 2016 01:35:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/how-to-create-an-sde-view-in-10-3/m-p/627021#M4222</guid>
      <dc:creator>AsrujitSengupta</dc:creator>
      <dc:date>2016-01-20T01:35:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an SDE View in 10.3</title>
      <link>https://community.esri.com/t5/developers-questions/how-to-create-an-sde-view-in-10-3/m-p/627022#M4223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Keep in mind that there really hasn't been anything called an "SDE View" for a long time.&amp;nbsp; The term of art is "spatial view" or just "database view" (geometry columns being a normal part of modern databases).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only time &lt;SPAN style="font-family: 'courier new', courier;"&gt;sdetable -o create_view&lt;/SPAN&gt; should be used is with SDEBINARY storage geometry layers (which are rapidly becoming rare).&amp;nbsp; For all other use cases, the database or geodatabase view construction tools are the appropriate tools.&amp;nbsp; After view construction and validation, you can use &lt;SPAN style="font-family: 'courier new', courier;"&gt;sdelayer -o register&lt;/SPAN&gt; to eliminate the Query Layer requirement of selecting an ID column (views must always be registered with a USER-set rowid column).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you need to replace an existing view which has been registered with ArcSDE, you should use ArcCatalog or &lt;SPAN style="font-family: 'courier new', courier;"&gt;sdetable -o delete&lt;/SPAN&gt; to drop the previous view, then use database tools to recreate the view, then use &lt;SPAN style="font-family: 'courier new', courier;"&gt;sdelayer -o register&lt;/SPAN&gt; to re-register with ArcSDE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- V&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jan 2016 04:01:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/how-to-create-an-sde-view-in-10-3/m-p/627022#M4223</guid>
      <dc:creator>VinceAngelo</dc:creator>
      <dc:date>2016-01-20T04:01:34Z</dc:date>
    </item>
  </channel>
</rss>

