<?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 how to get all the coded value from a domain in an SDE to a table in Geodatabase Questions</title>
    <link>https://community.esri.com/t5/geodatabase-questions/how-to-get-all-the-coded-value-from-a-domain-in-an/m-p/818036#M3548</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;trying to get all the values of a domain so i can check it for updates that are needed. i would like to get it in tabular form and then bacble to modify and republish it to the domain when completed. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 26 Apr 2016 17:38:54 GMT</pubDate>
    <dc:creator>lelaharrington</dc:creator>
    <dc:date>2016-04-26T17:38:54Z</dc:date>
    <item>
      <title>how to get all the coded value from a domain in an SDE to a table</title>
      <link>https://community.esri.com/t5/geodatabase-questions/how-to-get-all-the-coded-value-from-a-domain-in-an/m-p/818036#M3548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;trying to get all the values of a domain so i can check it for updates that are needed. i would like to get it in tabular form and then bacble to modify and republish it to the domain when completed. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Apr 2016 17:38:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/how-to-get-all-the-coded-value-from-a-domain-in-an/m-p/818036#M3548</guid>
      <dc:creator>lelaharrington</dc:creator>
      <dc:date>2016-04-26T17:38:54Z</dc:date>
    </item>
    <item>
      <title>Re: how to get all the coded value from a domain in an SDE to a table</title>
      <link>https://community.esri.com/t5/geodatabase-questions/how-to-get-all-the-coded-value-from-a-domain-in-an/m-p/818037#M3549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have&amp;nbsp; a look at &lt;A href="http://desktop.arcgis.com/en/arcmap/10.3/tools/data-management-toolbox/domain-to-table.htm" title="http://desktop.arcgis.com/en/arcmap/10.3/tools/data-management-toolbox/domain-to-table.htm"&gt;Domain To Table—Help | ArcGIS for Desktop&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Apr 2016 17:44:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/how-to-get-all-the-coded-value-from-a-domain-in-an/m-p/818037#M3549</guid>
      <dc:creator>WesMiller</dc:creator>
      <dc:date>2016-04-26T17:44:49Z</dc:date>
    </item>
    <item>
      <title>Re: how to get all the coded value from a domain in an SDE to a table</title>
      <link>https://community.esri.com/t5/geodatabase-questions/how-to-get-all-the-coded-value-from-a-domain-in-an/m-p/818038#M3550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This will create a view (sort of table) that will display your coded value domain:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;CREATE VIEW [dbo].[View_Landform]
AS
SELECT&amp;nbsp;&amp;nbsp;&amp;nbsp; codedValue.value('Code[1]', 'nvarchar(max)') AS &lt;PRE class="lia-code-sample line-numbers language-none"&gt;, codedValue.value('Name[1]', 'nvarchar(max)') AS [Value]&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dbo.GDB_ITEMS AS items INNER JOIN&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dbo.GDB_ITEMTYPES AS itemtypes ON items.Type = itemtypes.UUID CROSS APPLY items.Definition.nodes('/GPCodedValueDomain2/CodedValues/CodedValue')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS CodedValues(codedValue)&lt;/P&gt;&lt;P&gt;WHERE&amp;nbsp;&amp;nbsp;&amp;nbsp; itemtypes.Name = 'Coded Value Domain' AND items.Name = 'Landform'&lt;/P&gt;&lt;P&gt;GO&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The edit method described in &lt;A href="https://community.esri.com/migration-blogpost/2179" target="_blank"&gt;Re-order Attribute Domain Values&lt;/A&gt;&amp;nbsp; can also be used to execute the edits you desire without having to remove the domain from the FC attribute and re-import it. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 09:40:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/how-to-get-all-the-coded-value-from-a-domain-in-an/m-p/818038#M3550</guid>
      <dc:creator>ThomasColson</dc:creator>
      <dc:date>2021-12-12T09:40:46Z</dc:date>
    </item>
    <item>
      <title>Re: how to get all the coded value from a domain in an SDE to a table</title>
      <link>https://community.esri.com/t5/geodatabase-questions/how-to-get-all-the-coded-value-from-a-domain-in-an/m-p/818039#M3551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can also check out XRay &lt;A href="http://www.arcgis.com/home/item.html?id=e1e911d7d7374285b1ef03d06b3ee642" title="http://www.arcgis.com/home/item.html?id=e1e911d7d7374285b1ef03d06b3ee642"&gt;http://www.arcgis.com/home/item.html?id=e1e911d7d7374285b1ef03d06b3ee642&lt;/A&gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe you can use this to push domain edits back into the GDB.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 May 2016 11:35:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/how-to-get-all-the-coded-value-from-a-domain-in-an/m-p/818039#M3551</guid>
      <dc:creator>JenniferMcCall4</dc:creator>
      <dc:date>2016-05-11T11:35:32Z</dc:date>
    </item>
  </channel>
</rss>

