<?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 apply coded domain to float type field in enterprise GDB in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/cannot-apply-coded-domain-to-float-type-field-in/m-p/75261#M4356</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is thread has been inactive for a while but though I'd share my recent experience in case it is useful.&amp;nbsp; I have created a number of "Float" type domains via python and successfully applied them to Float type fields (ArcGIS Desktop 10.2.1 - SQL Server hosted geodatabase).&amp;nbsp; However when viewing the values in these fields in ArcMap the &lt;EM&gt;code&lt;/EM&gt; would display rather than the &lt;EM&gt;description&lt;/EM&gt;.&amp;nbsp; And in the ArcFM Attribute Editor the values would display with square brackets and hightlight red as an invalid value.&amp;nbsp; Viewing the domain in ArcCatalog the domain type was showing as Double.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Digging in the bowels of the geodatabase in the sde.gdb_items table you can find the XML definition of the domain.&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="punctuation token"&gt;[&lt;/SPAN&gt;Definition&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
  &lt;SPAN class="keyword token"&gt;FROM&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;Electricity&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;sde&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;GDB_ITEMS&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;where&lt;/SPAN&gt; name &lt;SPAN class="operator token"&gt;like&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Distribution Transformer Bottom Tap'&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Here you can observe the coded values have been created as a type of double rather than float.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;lt;FieldType&amp;gt;&lt;STRONG&gt;esriFieldTypeDouble&lt;/STRONG&gt;&amp;lt;/FieldType&amp;gt;
...
...
 &amp;lt;CodedValue xsi:type="typens:CodedValue"&amp;gt;
 &amp;lt;Name&amp;gt;2&amp;lt;/Name&amp;gt;
 &amp;lt;Code xsi:type=&lt;STRONG&gt;"xs:double"&lt;/STRONG&gt;&amp;gt;2&amp;lt;/Code&amp;gt;
 &amp;lt;/CodedValue&amp;gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you cut and paste the definition to a text editor, replacing &lt;STRONG&gt;esriFieldTypeDouble&lt;/STRONG&gt; with &lt;STRONG&gt;esriFieldTypeSingle&lt;/STRONG&gt; and &lt;STRONG&gt;xs:double&lt;/STRONG&gt; with &lt;STRONG&gt;xs:float&lt;/STRONG&gt; you can reapply it to the database to update the definition.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;UPDATE&lt;/SPAN&gt; 
    sde&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;gdb_items 
&lt;SPAN class="keyword token"&gt;SET&lt;/SPAN&gt;
    definition &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; '&lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt;GPCodedValueDomain2 xmlns:xsi&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;"http:&lt;SPAN class="comment token"&gt;//www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:typens="http://www.esri.com/schemas/ArcGIS/10.1" xsi:type="typens:GPCodedValueDomain2"&amp;gt;&amp;lt;DomainName&amp;gt;Distribution Transformer Bottom Tap&amp;lt;/DomainName&amp;gt;&amp;lt;FieldType&amp;gt;esriFieldTypeSingle&amp;lt;/FieldType&amp;gt;&amp;lt;MergePolicy&amp;gt;esriMPTDefaultValue&amp;lt;/MergePolicy&amp;gt;&amp;lt;SplitPolicy&amp;gt;esriSPTDuplicate&amp;lt;/SplitPolicy&amp;gt;&amp;lt;Description&amp;gt;Distribution Transformer Bottom Tap&amp;lt;/Description&amp;gt;&amp;lt;Owner&amp;gt;ARCFM&amp;lt;/Owner&amp;gt;&amp;lt;CodedValues xsi:type="typens:ArrayOfCodedValue"&amp;gt;&amp;lt;CodedValue xsi:type="typens:CodedValue"&amp;gt;&amp;lt;Name&amp;gt;Unknown&amp;lt;/Name&amp;gt;&amp;lt;Code xsi:type="xs:float"&amp;gt;-9999&amp;lt;/Code&amp;gt;&amp;lt;/CodedValue&amp;gt;&amp;lt;CodedValue xsi:type="typens:CodedValue"&amp;gt;&amp;lt;Name&amp;gt;Other&amp;lt;/Name&amp;gt;&amp;lt;Code xsi:type="xs:float"&amp;gt;-9997&amp;lt;/Code&amp;gt;&amp;lt;/CodedValue&amp;gt;&amp;lt;CodedValue xsi:type="typens:CodedValue"&amp;gt;&amp;lt;Name&amp;gt;1&amp;lt;/Name&amp;gt;&amp;lt;Code xsi:type="xs:float"&amp;gt;1&amp;lt;/Code&amp;gt;&amp;lt;/CodedValue&amp;gt;&amp;lt;CodedValue xsi:type="typens:CodedValue"&amp;gt;&amp;lt;Name&amp;gt;2&amp;lt;/Name&amp;gt;&amp;lt;Code xsi:type="xs:float"&amp;gt;2&amp;lt;/Code&amp;gt;&amp;lt;/CodedValue&amp;gt;&amp;lt;CodedValue xsi:type="typens:CodedValue"&amp;gt;&amp;lt;Name&amp;gt;3&amp;lt;/Name&amp;gt;&amp;lt;Code xsi:type="xs:float"&amp;gt;3&amp;lt;/Code&amp;gt;&amp;lt;/CodedValue&amp;gt;&amp;lt;CodedValue xsi:type="typens:CodedValue"&amp;gt;&amp;lt;Name&amp;gt;4&amp;lt;/Name&amp;gt;&amp;lt;Code xsi:type="xs:float"&amp;gt;4&amp;lt;/Code&amp;gt;&amp;lt;/CodedValue&amp;gt;&amp;lt;CodedValue xsi:type="typens:CodedValue"&amp;gt;&amp;lt;Name&amp;gt;5&amp;lt;/Name&amp;gt;&amp;lt;Code xsi:type="xs:float"&amp;gt;5&amp;lt;/Code&amp;gt;&amp;lt;/CodedValue&amp;gt;&amp;lt;CodedValue xsi:type="typens:CodedValue"&amp;gt;&amp;lt;Name&amp;gt;6&amp;lt;/Name&amp;gt;&amp;lt;Code xsi:type="xs:float"&amp;gt;6&amp;lt;/Code&amp;gt;&amp;lt;/CodedValue&amp;gt;&amp;lt;CodedValue xsi:type="typens:CodedValue"&amp;gt;&amp;lt;Name&amp;gt;7&amp;lt;/Name&amp;gt;&amp;lt;Code xsi:type="xs:float"&amp;gt;7&amp;lt;/Code&amp;gt;&amp;lt;/CodedValue&amp;gt;&amp;lt;CodedValue xsi:type="typens:CodedValue"&amp;gt;&amp;lt;Name&amp;gt;8&amp;lt;/Name&amp;gt;&amp;lt;Code xsi:type="xs:float"&amp;gt;8&amp;lt;/Code&amp;gt;&amp;lt;/CodedValue&amp;gt;&amp;lt;CodedValue xsi:type="typens:CodedValue"&amp;gt;&amp;lt;Name&amp;gt;9&amp;lt;/Name&amp;gt;&amp;lt;Code xsi:type="xs:float"&amp;gt;9&amp;lt;/Code&amp;gt;&amp;lt;/CodedValue&amp;gt;&amp;lt;CodedValue xsi:type="typens:CodedValue"&amp;gt;&amp;lt;Name&amp;gt;10&amp;lt;/Name&amp;gt;&amp;lt;Code xsi:type="xs:float"&amp;gt;10&amp;lt;/Code&amp;gt;&amp;lt;/CodedValue&amp;gt;&amp;lt;/CodedValues&amp;gt;&amp;lt;/GPCodedValueDomain2&amp;gt;'&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;WHERE&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;type&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'8C368B12-A12E-4C7E-9638-C9C64E69E98F'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;AND&lt;/SPAN&gt;
	name &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Distribution Transformer Bottom Tap'&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;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After this update the field and domain performs correctly inside ArcMap and you can add additional values to the domain via ArcCatalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm sure this falls in the category of a hack and totally unsupported ... but works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Testing creation of a domain in ArcCatalog under 10.7.1 suggests this has been fixed in a post 10.2.1 release.&amp;nbsp; I was able to specify a Float domain and have it stay a Float domain.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Dec 2021 22:54:51 GMT</pubDate>
    <dc:creator>NeilEtheridge</dc:creator>
    <dc:date>2021-12-10T22:54:51Z</dc:date>
    <item>
      <title>Cannot apply coded domain to float type field in enterprise GDB</title>
      <link>https://community.esri.com/t5/data-management-questions/cannot-apply-coded-domain-to-float-type-field-in/m-p/75257#M4352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have an existing feature class in an enterprise geodatabase with a float field. I would like to add a coded domain to limit the options a user has when performing data entry. Specifically, I want a coded domain so that the users will see 4.3 m (14ft) in the dropdown and 4.3 will be applied to the field as a value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I set up the domain I choose field type Float and set my codes and descriptions without any problems, click Apply, OK, I'm happy. When I try to go back into Database Properties a moment later (without applying the domain to any fields) the Field type has now changed to Double. When I try to change it back to Float I get an error "The existing domain field type does not match that of the updated domain".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Side note: I have followed the steps above and was able to successfully apply a domain to a float field in a file geodatabase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone help me out? Is this a limitation of an enterprise gdb?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Heather&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2015 19:52:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/cannot-apply-coded-domain-to-float-type-field-in/m-p/75257#M4352</guid>
      <dc:creator>AllWeatherHeather</dc:creator>
      <dc:date>2015-08-05T19:52:13Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot apply coded domain to float type field in enterprise GDB</title>
      <link>https://community.esri.com/t5/data-management-questions/cannot-apply-coded-domain-to-float-type-field-in/m-p/75258#M4353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May have something to do with the differences between databases in the definition of field types...&lt;/P&gt;&lt;P&gt;&lt;A href="http://desktop.arcgis.com/en/desktop/latest/manage-data/geodatabases/arcgis-field-data-types.htm" title="http://desktop.arcgis.com/en/desktop/latest/manage-data/geodatabases/arcgis-field-data-types.htm"&gt;ArcGIS field data types—ArcGIS Help | ArcGIS for Desktop&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2015 21:39:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/cannot-apply-coded-domain-to-float-type-field-in/m-p/75258#M4353</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2015-08-05T21:39:22Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot apply coded domain to float type field in enterprise GDB</title>
      <link>https://community.esri.com/t5/data-management-questions/cannot-apply-coded-domain-to-float-type-field-in/m-p/75259#M4354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think this has to do with the potential values in a float data range.&amp;nbsp; Just like you cannot create an attribute table on a raster with 32 bit float bit depth. The number of potential rows that could be added are too high and the software will prevent you from doing this operation. When you turn the floating point values into an integer, then you can access it. Perhaps your database is preventing the error that would otherwise occur and forcing it into another field type.&amp;nbsp; I haven't tested this, but the behavior is probably expected. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Aug 2015 11:49:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/cannot-apply-coded-domain-to-float-type-field-in/m-p/75259#M4354</guid>
      <dc:creator>JeffreySwain</dc:creator>
      <dc:date>2015-08-06T11:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot apply coded domain to float type field in enterprise GDB</title>
      <link>https://community.esri.com/t5/data-management-questions/cannot-apply-coded-domain-to-float-type-field-in/m-p/75260#M4355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you ever resolve this issue? Contrary to the explanation above about too many rows in the table, fields and domains of type DOUBLE seem to work just fine. My understanding is that the only difference between FLOAT and DOUBLE is number of characters, so logically FLOAT (smaller) should work if DOUBLE works. I'm really not wanting to convert all my fields to DOUBLE to make this work!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Sep 2017 23:03:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/cannot-apply-coded-domain-to-float-type-field-in/m-p/75260#M4355</guid>
      <dc:creator>GavinMcGhie</dc:creator>
      <dc:date>2017-09-01T23:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot apply coded domain to float type field in enterprise GDB</title>
      <link>https://community.esri.com/t5/data-management-questions/cannot-apply-coded-domain-to-float-type-field-in/m-p/75261#M4356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is thread has been inactive for a while but though I'd share my recent experience in case it is useful.&amp;nbsp; I have created a number of "Float" type domains via python and successfully applied them to Float type fields (ArcGIS Desktop 10.2.1 - SQL Server hosted geodatabase).&amp;nbsp; However when viewing the values in these fields in ArcMap the &lt;EM&gt;code&lt;/EM&gt; would display rather than the &lt;EM&gt;description&lt;/EM&gt;.&amp;nbsp; And in the ArcFM Attribute Editor the values would display with square brackets and hightlight red as an invalid value.&amp;nbsp; Viewing the domain in ArcCatalog the domain type was showing as Double.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Digging in the bowels of the geodatabase in the sde.gdb_items table you can find the XML definition of the domain.&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="punctuation token"&gt;[&lt;/SPAN&gt;Definition&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
  &lt;SPAN class="keyword token"&gt;FROM&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;Electricity&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;sde&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;GDB_ITEMS&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;where&lt;/SPAN&gt; name &lt;SPAN class="operator token"&gt;like&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Distribution Transformer Bottom Tap'&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Here you can observe the coded values have been created as a type of double rather than float.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;lt;FieldType&amp;gt;&lt;STRONG&gt;esriFieldTypeDouble&lt;/STRONG&gt;&amp;lt;/FieldType&amp;gt;
...
...
 &amp;lt;CodedValue xsi:type="typens:CodedValue"&amp;gt;
 &amp;lt;Name&amp;gt;2&amp;lt;/Name&amp;gt;
 &amp;lt;Code xsi:type=&lt;STRONG&gt;"xs:double"&lt;/STRONG&gt;&amp;gt;2&amp;lt;/Code&amp;gt;
 &amp;lt;/CodedValue&amp;gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you cut and paste the definition to a text editor, replacing &lt;STRONG&gt;esriFieldTypeDouble&lt;/STRONG&gt; with &lt;STRONG&gt;esriFieldTypeSingle&lt;/STRONG&gt; and &lt;STRONG&gt;xs:double&lt;/STRONG&gt; with &lt;STRONG&gt;xs:float&lt;/STRONG&gt; you can reapply it to the database to update the definition.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;UPDATE&lt;/SPAN&gt; 
    sde&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;gdb_items 
&lt;SPAN class="keyword token"&gt;SET&lt;/SPAN&gt;
    definition &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; '&lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt;GPCodedValueDomain2 xmlns:xsi&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;"http:&lt;SPAN class="comment token"&gt;//www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:typens="http://www.esri.com/schemas/ArcGIS/10.1" xsi:type="typens:GPCodedValueDomain2"&amp;gt;&amp;lt;DomainName&amp;gt;Distribution Transformer Bottom Tap&amp;lt;/DomainName&amp;gt;&amp;lt;FieldType&amp;gt;esriFieldTypeSingle&amp;lt;/FieldType&amp;gt;&amp;lt;MergePolicy&amp;gt;esriMPTDefaultValue&amp;lt;/MergePolicy&amp;gt;&amp;lt;SplitPolicy&amp;gt;esriSPTDuplicate&amp;lt;/SplitPolicy&amp;gt;&amp;lt;Description&amp;gt;Distribution Transformer Bottom Tap&amp;lt;/Description&amp;gt;&amp;lt;Owner&amp;gt;ARCFM&amp;lt;/Owner&amp;gt;&amp;lt;CodedValues xsi:type="typens:ArrayOfCodedValue"&amp;gt;&amp;lt;CodedValue xsi:type="typens:CodedValue"&amp;gt;&amp;lt;Name&amp;gt;Unknown&amp;lt;/Name&amp;gt;&amp;lt;Code xsi:type="xs:float"&amp;gt;-9999&amp;lt;/Code&amp;gt;&amp;lt;/CodedValue&amp;gt;&amp;lt;CodedValue xsi:type="typens:CodedValue"&amp;gt;&amp;lt;Name&amp;gt;Other&amp;lt;/Name&amp;gt;&amp;lt;Code xsi:type="xs:float"&amp;gt;-9997&amp;lt;/Code&amp;gt;&amp;lt;/CodedValue&amp;gt;&amp;lt;CodedValue xsi:type="typens:CodedValue"&amp;gt;&amp;lt;Name&amp;gt;1&amp;lt;/Name&amp;gt;&amp;lt;Code xsi:type="xs:float"&amp;gt;1&amp;lt;/Code&amp;gt;&amp;lt;/CodedValue&amp;gt;&amp;lt;CodedValue xsi:type="typens:CodedValue"&amp;gt;&amp;lt;Name&amp;gt;2&amp;lt;/Name&amp;gt;&amp;lt;Code xsi:type="xs:float"&amp;gt;2&amp;lt;/Code&amp;gt;&amp;lt;/CodedValue&amp;gt;&amp;lt;CodedValue xsi:type="typens:CodedValue"&amp;gt;&amp;lt;Name&amp;gt;3&amp;lt;/Name&amp;gt;&amp;lt;Code xsi:type="xs:float"&amp;gt;3&amp;lt;/Code&amp;gt;&amp;lt;/CodedValue&amp;gt;&amp;lt;CodedValue xsi:type="typens:CodedValue"&amp;gt;&amp;lt;Name&amp;gt;4&amp;lt;/Name&amp;gt;&amp;lt;Code xsi:type="xs:float"&amp;gt;4&amp;lt;/Code&amp;gt;&amp;lt;/CodedValue&amp;gt;&amp;lt;CodedValue xsi:type="typens:CodedValue"&amp;gt;&amp;lt;Name&amp;gt;5&amp;lt;/Name&amp;gt;&amp;lt;Code xsi:type="xs:float"&amp;gt;5&amp;lt;/Code&amp;gt;&amp;lt;/CodedValue&amp;gt;&amp;lt;CodedValue xsi:type="typens:CodedValue"&amp;gt;&amp;lt;Name&amp;gt;6&amp;lt;/Name&amp;gt;&amp;lt;Code xsi:type="xs:float"&amp;gt;6&amp;lt;/Code&amp;gt;&amp;lt;/CodedValue&amp;gt;&amp;lt;CodedValue xsi:type="typens:CodedValue"&amp;gt;&amp;lt;Name&amp;gt;7&amp;lt;/Name&amp;gt;&amp;lt;Code xsi:type="xs:float"&amp;gt;7&amp;lt;/Code&amp;gt;&amp;lt;/CodedValue&amp;gt;&amp;lt;CodedValue xsi:type="typens:CodedValue"&amp;gt;&amp;lt;Name&amp;gt;8&amp;lt;/Name&amp;gt;&amp;lt;Code xsi:type="xs:float"&amp;gt;8&amp;lt;/Code&amp;gt;&amp;lt;/CodedValue&amp;gt;&amp;lt;CodedValue xsi:type="typens:CodedValue"&amp;gt;&amp;lt;Name&amp;gt;9&amp;lt;/Name&amp;gt;&amp;lt;Code xsi:type="xs:float"&amp;gt;9&amp;lt;/Code&amp;gt;&amp;lt;/CodedValue&amp;gt;&amp;lt;CodedValue xsi:type="typens:CodedValue"&amp;gt;&amp;lt;Name&amp;gt;10&amp;lt;/Name&amp;gt;&amp;lt;Code xsi:type="xs:float"&amp;gt;10&amp;lt;/Code&amp;gt;&amp;lt;/CodedValue&amp;gt;&amp;lt;/CodedValues&amp;gt;&amp;lt;/GPCodedValueDomain2&amp;gt;'&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;WHERE&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;type&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'8C368B12-A12E-4C7E-9638-C9C64E69E98F'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;AND&lt;/SPAN&gt;
	name &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Distribution Transformer Bottom Tap'&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;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After this update the field and domain performs correctly inside ArcMap and you can add additional values to the domain via ArcCatalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm sure this falls in the category of a hack and totally unsupported ... but works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Testing creation of a domain in ArcCatalog under 10.7.1 suggests this has been fixed in a post 10.2.1 release.&amp;nbsp; I was able to specify a Float domain and have it stay a Float domain.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 22:54:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/cannot-apply-coded-domain-to-float-type-field-in/m-p/75261#M4356</guid>
      <dc:creator>NeilEtheridge</dc:creator>
      <dc:date>2021-12-10T22:54:51Z</dc:date>
    </item>
  </channel>
</rss>

