<?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: GlobalID data type showing as &amp;quot;SmallInteger&amp;quot; in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/globalid-data-type-showing-as-amp-quot/m-p/657427#M51145</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;[INDENT]&lt;/SPAN&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I'm not sure exactly how GUIDs work but I'm assuming the actual field value is just a reference to a value stored in the geodatabase, similar to a domain. &lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;[/INDENT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm not sure either, but I don't think so.&amp;nbsp; It's seems clear from this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//003n0000001m000000" rel="nofollow noopener noreferrer" target="_blank"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#//003n0000001m000000&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;that they're just the 36 character strings as described.&amp;nbsp; Furthermore I was able to fix this problem by using this code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # Begin bug patch of Guid showing as ShortInt
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rows = arcpy.SearchCursor(layer)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for row in rows:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TestString = str(row.getValue(fieldName)) # use str() in case this really is a Short
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (TestString[0] == "{"):&amp;nbsp;&amp;nbsp; # a "{" character has no business in a *real* Short
&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; valueDelimiter = "'"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # End bug patch of Guid showing as ShortInt
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Am I missing something obvious?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;PS: I'm building up a query string.&amp;nbsp; Some values need delimiters (e.g. strings and guids) and some don't (e.g. short integers).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 03:49:26 GMT</pubDate>
    <dc:creator>StormwaterWater_Resources</dc:creator>
    <dc:date>2021-12-12T03:49:26Z</dc:date>
    <item>
      <title>GlobalID data type showing as &amp;quot;SmallInteger&amp;quot;</title>
      <link>https://community.esri.com/t5/python-questions/globalid-data-type-showing-as-amp-quot/m-p/657425#M51143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;ArcMap Standard, 10.1:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm using the following:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;
inputField = arcpy.ListFields(inputLayer, inputFieldName)[0]
fieldType = inputField.type
&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For everything except GlobalID's it's working fine.&amp;nbsp; When the data type is a GlobalID the returned value of .type is "SmallInteger".&amp;nbsp; I can't find any forum or help page showing this to be a known bug.&amp;nbsp; How do I find the type of a global ID field?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 16:24:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/globalid-data-type-showing-as-amp-quot/m-p/657425#M51143</guid>
      <dc:creator>StormwaterWater_Resources</dc:creator>
      <dc:date>2013-03-04T16:24:55Z</dc:date>
    </item>
    <item>
      <title>Re: GlobalID data type showing as "SmallInteger"</title>
      <link>https://community.esri.com/t5/python-questions/globalid-data-type-showing-as-amp-quot/m-p/657426#M51144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Edit: Sorry read GlobalID as OID.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm not sure exactly how GUIDs work but I'm assuming the actual field value is just a reference to a value stored in the geodatabase, similar to a domain.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 17:12:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/globalid-data-type-showing-as-amp-quot/m-p/657426#M51144</guid>
      <dc:creator>MathewCoyle</dc:creator>
      <dc:date>2013-03-04T17:12:17Z</dc:date>
    </item>
    <item>
      <title>Re: GlobalID data type showing as "SmallInteger"</title>
      <link>https://community.esri.com/t5/python-questions/globalid-data-type-showing-as-amp-quot/m-p/657427#M51145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;[INDENT]&lt;/SPAN&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I'm not sure exactly how GUIDs work but I'm assuming the actual field value is just a reference to a value stored in the geodatabase, similar to a domain. &lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;[/INDENT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm not sure either, but I don't think so.&amp;nbsp; It's seems clear from this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//003n0000001m000000" rel="nofollow noopener noreferrer" target="_blank"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#//003n0000001m000000&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;that they're just the 36 character strings as described.&amp;nbsp; Furthermore I was able to fix this problem by using this code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # Begin bug patch of Guid showing as ShortInt
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rows = arcpy.SearchCursor(layer)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for row in rows:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TestString = str(row.getValue(fieldName)) # use str() in case this really is a Short
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (TestString[0] == "{"):&amp;nbsp;&amp;nbsp; # a "{" character has no business in a *real* Short
&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; valueDelimiter = "'"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # End bug patch of Guid showing as ShortInt
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Am I missing something obvious?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;PS: I'm building up a query string.&amp;nbsp; Some values need delimiters (e.g. strings and guids) and some don't (e.g. short integers).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 03:49:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/globalid-data-type-showing-as-amp-quot/m-p/657427#M51145</guid>
      <dc:creator>StormwaterWater_Resources</dc:creator>
      <dc:date>2021-12-12T03:49:26Z</dc:date>
    </item>
    <item>
      <title>Re: GlobalID data type showing as "SmallInteger"</title>
      <link>https://community.esri.com/t5/python-questions/globalid-data-type-showing-as-amp-quot/m-p/657428#M51146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes but the string is registered with the geodatabase, it does not necessarily have to be the value stored in the field.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 18:04:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/globalid-data-type-showing-as-amp-quot/m-p/657428#M51146</guid>
      <dc:creator>MathewCoyle</dc:creator>
      <dc:date>2013-03-04T18:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: GlobalID data type showing as "SmallInteger"</title>
      <link>https://community.esri.com/t5/python-questions/globalid-data-type-showing-as-amp-quot/m-p/657429#M51147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Yes but the string is registered with the geodatabase, it does not necessarily have to be the value stored in the field. &lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Ok, but how does that help?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I need to properly delimit a value in an SQL query (the delimiting of the field name per workspace is already done).&amp;nbsp; If it's a short then the form is &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[FieldName] = [value]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;if it's a guid then it's&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[FieldName] = '[value]'&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;How does it help if the guid is a reference or not?&amp;nbsp; It still doesn't seem right that the .type property should return "SmallInteger" on something which is clearly neither small nor an integer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;EDIT: PS: Oh, are you saying the SmallInteger is a reference to the guid?&amp;nbsp; Shorts do not even remotely map onto the domain space of a guid so that's definitely not the case if I'm understanding what you mean.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 18:38:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/globalid-data-type-showing-as-amp-quot/m-p/657429#M51147</guid>
      <dc:creator>StormwaterWater_Resources</dc:creator>
      <dc:date>2013-03-04T18:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: GlobalID data type showing as "SmallInteger"</title>
      <link>https://community.esri.com/t5/python-questions/globalid-data-type-showing-as-amp-quot/m-p/657430#M51148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes you are right of course, I was just speculating on possible scenarios where this wouldn't be a bug/error but it definitely seems like it is. I tested on a sample feature class over 65,535 rows of GUIDs and it is still assigned a type of SmallInteger which has to be a bug no matter what the field holds.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Not sure if this helps your situation, but are you aware of the describe properties for GUIDs?&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;desc.globalIDFieldName
desc.hasGlobalID&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 03:49:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/globalid-data-type-showing-as-amp-quot/m-p/657430#M51148</guid>
      <dc:creator>MathewCoyle</dc:creator>
      <dc:date>2021-12-12T03:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: GlobalID data type showing as "SmallInteger"</title>
      <link>https://community.esri.com/t5/python-questions/globalid-data-type-showing-as-amp-quot/m-p/657431#M51149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I had played with the describe method earlier when trying to use it for determining the delimiters for the field name, but I didn't remember that there were globalID properties in the desc object.&amp;nbsp; Thank you, I'll look at that tomorrow.&amp;nbsp; None the less, as you saw the .type value for guids clearly seems to be broken so I'm hoping someone from Esri will notice this.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 19:12:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/globalid-data-type-showing-as-amp-quot/m-p/657431#M51149</guid>
      <dc:creator>StormwaterWater_Resources</dc:creator>
      <dc:date>2013-03-04T19:12:52Z</dc:date>
    </item>
    <item>
      <title>Re: GlobalID data type showing as &amp;quot;SmallInteger&amp;quot;</title>
      <link>https://community.esri.com/t5/python-questions/globalid-data-type-showing-as-amp-quot/m-p/657432#M51150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm seeing this same error with 10.2.1, seems like a bug, here's the result from the describe function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;gt; for fld in desc.fields:&lt;BR /&gt;...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print(fld.name + " " + fld.type)&lt;BR /&gt;...&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;OBJECTID OID&lt;BR /&gt;COMMENTS String&lt;BR /&gt;NAME String&lt;BR /&gt;YEARESTABLISHED Date&lt;BR /&gt;MXPARENTLOC String&lt;BR /&gt;CREATEEDITOR String&lt;BR /&gt;CREATEDATE Date&lt;BR /&gt;LASTEDITOR String&lt;BR /&gt;LASTEDITDATE Date&lt;BR /&gt;Shape Geometry&lt;BR /&gt;GlobalID SmallInteger&lt;BR /&gt;Shape.STArea() Double&lt;BR /&gt;Shape.STLength() Double&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but the field shows as a GlobalId type in ArcCatalog&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Mar 2017 23:36:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/globalid-data-type-showing-as-amp-quot/m-p/657432#M51150</guid>
      <dc:creator>AJR</dc:creator>
      <dc:date>2017-03-31T23:36:19Z</dc:date>
    </item>
    <item>
      <title>Re: GlobalID data type showing as &amp;quot;SmallInteger&amp;quot;</title>
      <link>https://community.esri.com/t5/python-questions/globalid-data-type-showing-as-amp-quot/m-p/657433#M51151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the back-end data store?&amp;nbsp; SQL Server, Oracle, PostgreSQL?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did a quick check using ArcGIS 10.5 with an enterprise geodatabase in SQL Server, and the results are correct with ArcPy Describe.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2017 16:56:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/globalid-data-type-showing-as-amp-quot/m-p/657433#M51151</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2017-04-03T16:56:08Z</dc:date>
    </item>
    <item>
      <title>Re: GlobalID data type showing as &amp;quot;SmallInteger&amp;quot;</title>
      <link>https://community.esri.com/t5/python-questions/globalid-data-type-showing-as-amp-quot/m-p/657434#M51152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Might be fixed in 10.5, but with 10.2 with Sql Server backend enterprise gdb the issue occurs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.J.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2017 17:11:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/globalid-data-type-showing-as-amp-quot/m-p/657434#M51152</guid>
      <dc:creator>AJR</dc:creator>
      <dc:date>2017-04-03T17:11:09Z</dc:date>
    </item>
    <item>
      <title>Re: GlobalID data type showing as &amp;quot;SmallInteger&amp;quot;</title>
      <link>https://community.esri.com/t5/python-questions/globalid-data-type-showing-as-amp-quot/m-p/657435#M51153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got the same result in 10.2.1--small integer instead of GUID. Is there a patch to fix this bug (or is it not worth the bother, just wait to get upgraded)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2018 23:21:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/globalid-data-type-showing-as-amp-quot/m-p/657435#M51153</guid>
      <dc:creator>MaheshPatel1</dc:creator>
      <dc:date>2018-05-24T23:21:32Z</dc:date>
    </item>
    <item>
      <title>Re: GlobalID data type showing as &amp;quot;SmallInteger&amp;quot;</title>
      <link>https://community.esri.com/t5/python-questions/globalid-data-type-showing-as-amp-quot/m-p/657436#M51154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you look over &lt;A class="link-titled" href="https://support.esri.com/en/Products/Desktop/arcgis-desktop/arcmap/10-2-2#downloads" title="https://support.esri.com/en/Products/Desktop/arcgis-desktop/arcmap/10-2-2#downloads"&gt;Esri Support 10.2 (10.2.1, 10.2.2)&lt;/A&gt; ?&amp;nbsp; Seeing nothing on the&lt;A href="http://downloads.esri.com/support/downloads/other_/1022-IssuesAddressedList.pdf"&gt; ArcGIS 10.2.2 Issues Addressed List&lt;/A&gt; appears related to this issue, I suspect no patch or hotfix was issued at 10.2.1 for it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In terms of upgrades and when it was addresses exactly, I don't know, but you could peruse the issues addressed lists for the releases since 10.2.1 to 10.5:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A class="link-titled" href="http://downloads.esri.com/support/downloads/other_/1022-IssuesAddressedList.pdf" title="http://downloads.esri.com/support/downloads/other_/1022-IssuesAddressedList.pdf"&gt;http://downloads.esri.com/support/downloads/other_/1022-IssuesAddressedList.pdf&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;&lt;A class="link-titled" href="http://downloads.esri.com/support/downloads/other_/103-IssuesAddressedList.pdf" title="http://downloads.esri.com/support/downloads/other_/103-IssuesAddressedList.pdf"&gt;http://downloads.esri.com/support/downloads/other_/103-IssuesAddressedList.pdf&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;&lt;A class="link-titled" href="http://downloads.esri.com/support/downloads/other_/1031-IssuesAddressedList.pdf" title="http://downloads.esri.com/support/downloads/other_/1031-IssuesAddressedList.pdf"&gt;http://downloads.esri.com/support/downloads/other_/1031-IssuesAddressedList.pdf&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;&lt;A class="link-titled" href="http://downloads.esri.com/support/downloads/other_/104-IssuesAddressedList.pdf" title="http://downloads.esri.com/support/downloads/other_/104-IssuesAddressedList.pdf"&gt;http://downloads.esri.com/support/downloads/other_/104-IssuesAddressedList.pdf&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;&lt;A class="link-titled" href="http://downloads.esri.com/support/downloads/other_/10-4-1-IssuesAddressedList.pdf" title="http://downloads.esri.com/support/downloads/other_/10-4-1-IssuesAddressedList.pdf"&gt;http://downloads.esri.com/support/downloads/other_/10-4-1-IssuesAddressedList.pdf&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;&lt;A class="link-titled" href="http://downloads.esri.com/support/downloads/other_/105-IssuesAddressedList_12082016.pdf" title="http://downloads.esri.com/support/downloads/other_/105-IssuesAddressedList_12082016.pdf"&gt;http://downloads.esri.com/support/downloads/other_/105-IssuesAddressedList_12082016.pdf&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;&lt;A class="link-titled" href="http://downloads.esri.com/support/downloads/other_/1051-IssuesAddressedList_07052017.pdf" title="http://downloads.esri.com/support/downloads/other_/1051-IssuesAddressedList_07052017.pdf"&gt;http://downloads.esri.com/support/downloads/other_/1051-IssuesAddressedList_07052017.pdf&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(&lt;EM&gt;I know, nice path/URL standardization on Esri's part&lt;/EM&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 May 2018 13:32:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/globalid-data-type-showing-as-amp-quot/m-p/657436#M51154</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2018-05-25T13:32:34Z</dc:date>
    </item>
  </channel>
</rss>

