<?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: curly brackets in GUID in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/curly-brackets-in-guid/m-p/688830#M30468</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I add data as a query layer and export features into a geodatabase, and yes, the field type in Pro are showing GUID. Maybe this field type, will&amp;nbsp;always include curly brackets?&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 23 Feb 2020 09:19:00 GMT</pubDate>
    <dc:creator>DanielSørensen</dc:creator>
    <dc:date>2020-02-23T09:19:00Z</dc:date>
    <item>
      <title>curly brackets in GUID</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/curly-brackets-in-guid/m-p/688827#M30465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When importing data from a PostgreSQL database into ArcGIS Pro, the UUID from PostgreSQL are transformed into GUIDs, and for some reason the GUID contains curly brackets in the begnning and end, as showend below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" height="171" src="https://community.esri.com/legacyfs/online/482974_pastedImage_1.png" width="272" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you guys know how to avoid that? Or, how to remove the curly brackets?&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Feb 2020 16:00:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/curly-brackets-in-guid/m-p/688827#M30465</guid>
      <dc:creator>DanielSørensen</dc:creator>
      <dc:date>2020-02-22T16:00:53Z</dc:date>
    </item>
    <item>
      <title>Re: curly brackets in GUID</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/curly-brackets-in-guid/m-p/688828#M30466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, completely unsure of the reason but a quick fix in field calculator would be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set it to python on the radio button and click 'show codeblock' put this in the pre-logic script code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;def&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;curly&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;field&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
    field &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; field&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;replace&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"{"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;""&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    field &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; field&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;replace&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"}"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;""&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt; field&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then type into the codeblock at the bottom (below 'my field =')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;curly(the name of your field enclosed within ! !)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;curly(!GUID!)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 04:59:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/curly-brackets-in-guid/m-p/688828#M30466</guid>
      <dc:creator>DavidPike</dc:creator>
      <dc:date>2021-12-12T04:59:33Z</dc:date>
    </item>
    <item>
      <title>Re: curly brackets in GUID</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/curly-brackets-in-guid/m-p/688829#M30467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The most important statement you made is, "when importing..."&amp;nbsp; I am guessing your field type in Pro will show as GUID.&amp;nbsp; If so, you can't just remove the curly brackets.&amp;nbsp; How are you importing the data?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Feb 2020 01:42:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/curly-brackets-in-guid/m-p/688829#M30467</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2020-02-23T01:42:01Z</dc:date>
    </item>
    <item>
      <title>Re: curly brackets in GUID</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/curly-brackets-in-guid/m-p/688830#M30468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I add data as a query layer and export features into a geodatabase, and yes, the field type in Pro are showing GUID. Maybe this field type, will&amp;nbsp;always include curly brackets?&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Feb 2020 09:19:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/curly-brackets-in-guid/m-p/688830#M30468</guid>
      <dc:creator>DanielSørensen</dc:creator>
      <dc:date>2020-02-23T09:19:00Z</dc:date>
    </item>
    <item>
      <title>Re: curly brackets in GUID</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/curly-brackets-in-guid/m-p/688831#M30469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;perhaps the opening paragraphs here might explain why the field appears to change&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://pro.arcgis.com/en/pro-app/help/data/geodatabases/overview/arcgis-field-data-types.htm" title="https://pro.arcgis.com/en/pro-app/help/data/geodatabases/overview/arcgis-field-data-types.htm"&gt;ArcGIS field data types—Geodatabases | Documentation&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and the section on Global Identifier section.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Feb 2020 10:48:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/curly-brackets-in-guid/m-p/688831#M30469</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2020-02-23T10:48:26Z</dc:date>
    </item>
  </channel>
</rss>

