<?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: SDE database connection is populated with different feature class names in SDK in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/sde-database-connection-is-populated-with/m-p/1387519#M11156</link>
    <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/760068"&gt;@SumitMishra_016&lt;/a&gt; I am curious to know what your expectations were and what you are seeing. Could you please elaborate?&lt;/P&gt;</description>
    <pubDate>Tue, 27 Feb 2024 16:40:21 GMT</pubDate>
    <dc:creator>Aashis</dc:creator>
    <dc:date>2024-02-27T16:40:21Z</dc:date>
    <item>
      <title>SDE database connection is populated with different feature class names in SDK</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/sde-database-connection-is-populated-with/m-p/1387288#M11154</link>
      <description>&lt;P&gt;I am &lt;SPAN class=""&gt;Obtaining Featureclass names From SDE Geodatabase&amp;nbsp;&lt;/SPAN&gt;using following code:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;public&lt;/SPAN&gt; &lt;SPAN class=""&gt;async&lt;/SPAN&gt; Task &lt;SPAN class=""&gt;ObtainingDefinitionsFromGeodatabase&lt;/SPAN&gt;&lt;SPAN class=""&gt;(&lt;/SPAN&gt;&lt;SPAN class=""&gt;)&lt;/SPAN&gt;
&lt;SPAN class=""&gt;{&lt;/SPAN&gt;
  &lt;SPAN class=""&gt;await&lt;/SPAN&gt; ArcGIS&lt;SPAN class=""&gt;.&lt;/SPAN&gt;Desktop&lt;SPAN class=""&gt;.&lt;/SPAN&gt;Framework&lt;SPAN class=""&gt;.&lt;/SPAN&gt;Threading&lt;SPAN class=""&gt;.&lt;/SPAN&gt;Tasks&lt;SPAN class=""&gt;.&lt;/SPAN&gt;QueuedTask&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;SPAN class=""&gt;Run&lt;/SPAN&gt;&lt;SPAN class=""&gt;(&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;(&lt;/SPAN&gt;&lt;SPAN class=""&gt;)&lt;/SPAN&gt; &lt;SPAN class=""&gt;=&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;SPAN class=""&gt;  &lt;SPAN class=""&gt;{&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;SPAN class=""&gt;    &lt;SPAN class=""&gt;using&lt;/SPAN&gt; &lt;SPAN class=""&gt;(&lt;/SPAN&gt;&lt;SPAN class=""&gt;Geodatabase&lt;/SPAN&gt; geodatabase &lt;SPAN class=""&gt;=&lt;/SPAN&gt; &lt;SPAN class=""&gt;new&lt;/SPAN&gt; Geodatabase&lt;SPAN class=""&gt;(&lt;/SPAN&gt;&lt;SPAN class=""&gt;new&lt;/SPAN&gt; DatabaseConnectionFile&lt;SPAN class=""&gt;(&lt;/SPAN&gt;&lt;SPAN class=""&gt;new&lt;/SPAN&gt; Uri&lt;SPAN class=""&gt;(&lt;/SPAN&gt;&lt;SPAN class=""&gt;"path&lt;SPAN class=""&gt;\\&lt;/SPAN&gt;to&lt;SPAN class=""&gt;\\&lt;/SPAN&gt;sde&lt;SPAN class=""&gt;\\&lt;/SPAN&gt;file&lt;SPAN class=""&gt;\\&lt;/SPAN&gt;sdefile.sde"&lt;/SPAN&gt;&lt;SPAN class=""&gt;)&lt;/SPAN&gt;&lt;SPAN class=""&gt;)&lt;/SPAN&gt;&lt;SPAN class=""&gt;)&lt;/SPAN&gt;&lt;SPAN class=""&gt;)&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;SPAN class=""&gt;    &lt;SPAN class=""&gt;{&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;SPAN class=""&gt;      &lt;SPAN class=""&gt;IReadOnlyList&lt;/SPAN&gt;&lt;SPAN class=""&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;FeatureClassDefinition&lt;/SPAN&gt;&lt;SPAN class=""&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;enterpriseDefinitions &lt;/SPAN&gt;&lt;SPAN class=""&gt;=&lt;/SPAN&gt; geodatabase&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;SPAN class=""&gt;GetDefinitions&lt;/SPAN&gt;&lt;SPAN class=""&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;FeatureClassDefinition&lt;/SPAN&gt;&lt;SPAN class=""&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;(&lt;/SPAN&gt;&lt;SPAN class=""&gt;)&lt;/SPAN&gt;&lt;SPAN class=""&gt;;&lt;BR /&gt;      List&amp;lt;string&amp;gt; featureclassList = enterpriseDefinitions.Select(x =&amp;gt; x.GetName()).ToList();&lt;/SPAN&gt;&lt;/SPAN&gt;
      
&lt;SPAN class=""&gt;    &lt;SPAN class=""&gt;}&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;SPAN class=""&gt;  &lt;SPAN class=""&gt;}&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;)&lt;/SPAN&gt;&lt;SPAN class=""&gt;;&lt;/SPAN&gt;
&lt;SPAN class=""&gt;}&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;But &lt;SPAN class=""&gt;&lt;SPAN class=""&gt;featureclassList&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;is populated with different feature class names along with actual feature class names contained in the database. In Catalog, it is showing correct feature classes.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I am using ArcGIS pro SDK 3.1 and Oracle SDE connection. What's wrong in the above code&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/12882"&gt;@Wolf&lt;/a&gt;,&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/42133"&gt;@GKmieliauskas&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/9021"&gt;@UmaHarano&lt;/a&gt;&amp;nbsp;?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Feb 2024 10:14:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/sde-database-connection-is-populated-with/m-p/1387288#M11154</guid>
      <dc:creator>SumitMishra_016</dc:creator>
      <dc:date>2024-02-27T10:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: SDE database connection is populated with different feature class names in SDK</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/sde-database-connection-is-populated-with/m-p/1387519#M11156</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/760068"&gt;@SumitMishra_016&lt;/a&gt; I am curious to know what your expectations were and what you are seeing. Could you please elaborate?&lt;/P&gt;</description>
      <pubDate>Tue, 27 Feb 2024 16:40:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/sde-database-connection-is-populated-with/m-p/1387519#M11156</guid>
      <dc:creator>Aashis</dc:creator>
      <dc:date>2024-02-27T16:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: SDE database connection is populated with different feature class names in SDK</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/sde-database-connection-is-populated-with/m-p/1387879#M11160</link>
      <description>&lt;P&gt;Thanks for the reply&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/221628"&gt;@Aashis&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;When opening the sde connection in catalog, it shows correct Enterprise Geodatabase Feature Classes which are associated with the username provide in the sde connection.&lt;/P&gt;&lt;P&gt;But when I am using&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;geodatabase.GetDefinitions&amp;lt;FeatureClassDefinition&amp;gt;()&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;it shows other&amp;nbsp;Enterprise Geodatabase Feature Classes which are not associated with the username provide in the sde connection&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2024 06:48:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/sde-database-connection-is-populated-with/m-p/1387879#M11160</guid>
      <dc:creator>SumitMishra_016</dc:creator>
      <dc:date>2024-02-28T06:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: SDE database connection is populated with different feature class names in SDK</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/sde-database-connection-is-populated-with/m-p/1388842#M11174</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/760068"&gt;@SumitMishra_016&lt;/a&gt;&amp;nbsp;, it seems like the catalog's view-only behavior for the owner, and the API shows everything the user has access to.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Aashis_0-1709220580349.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/96311i9066A47DFF785B30/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Aashis_0-1709220580349.png" alt="Aashis_0-1709220580349.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Feb 2024 15:30:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/sde-database-connection-is-populated-with/m-p/1388842#M11174</guid>
      <dc:creator>Aashis</dc:creator>
      <dc:date>2024-02-29T15:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: SDE database connection is populated with different feature class names in SDK</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/sde-database-connection-is-populated-with/m-p/1389274#M11179</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/221628"&gt;@Aashis&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;List only object owned by connecting user was not checked but it was still showing correct feature classes.&lt;/P&gt;&lt;P&gt;Can I use this(List only object owned by connecting user) in code?&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2024 04:28:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/sde-database-connection-is-populated-with/m-p/1389274#M11179</guid>
      <dc:creator>SumitMishra_016</dc:creator>
      <dc:date>2024-03-01T04:28:37Z</dc:date>
    </item>
    <item>
      <title>Re: SDE database connection is populated with different feature class names in SDK</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/sde-database-connection-is-populated-with/m-p/1393349#M11216</link>
      <description>&lt;P&gt;Refer to-&amp;nbsp;&lt;A href="https://community.esri.com/t5/arcgis-pro-sdk-questions/obtaining-featureclass-names-from-sde-file-path/m-p/1393344/highlight/true#M11215" target="_blank" rel="noopener"&gt;https://community.esri.com/t5/arcgis-pro-sdk-questions/obtaining-featureclass-names-from-sde-file-path/m-p/1393344/highlight/true#M11215&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Mar 2024 18:48:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/sde-database-connection-is-populated-with/m-p/1393349#M11216</guid>
      <dc:creator>Aashis</dc:creator>
      <dc:date>2024-03-08T18:48:58Z</dc:date>
    </item>
  </channel>
</rss>

