<?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: Text data type and Length size problem in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/text-data-type-and-length-size-problem/m-p/1552930#M45441</link>
    <description>&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-pro-questions/get-maximum-text-value-length-of-multiple-text/m-p/1552914/highlight/true#M89541" target="_self"&gt;Get maximum text value length of multiple text fields&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Idea: &lt;A href="https://community.esri.com/t5/arcgis-pro-ideas/import-table-set-text-field-length-to-input-field/idi-p/1552921" target="_self"&gt;Import Table — Set text field length to input field's max text value length&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 28 Oct 2024 18:24:15 GMT</pubDate>
    <dc:creator>Bud</dc:creator>
    <dc:date>2024-10-28T18:24:15Z</dc:date>
    <item>
      <title>Text data type and Length size problem</title>
      <link>https://community.esri.com/t5/data-management-questions/text-data-type-and-length-size-problem/m-p/257295#M14709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;When importing a table into SDE/Oracle 11g instance using AG 10 or 9.3.1 "Table to Table" tool, a field defined as Text, 4000 is converted to Text, 1073741822.&amp;nbsp; Using SQL Plus to describe the table, it defines it as Type, NCLOB.&amp;nbsp; The table was originally loaded in SDE using SQL.&amp;nbsp; There is a similar issue when importing the table into a File Geodatabase.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Has anyone encounter this problem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;B!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Sep 2011 16:09:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/text-data-type-and-length-size-problem/m-p/257295#M14709</guid>
      <dc:creator>BibiOung1</dc:creator>
      <dc:date>2011-09-01T16:09:37Z</dc:date>
    </item>
    <item>
      <title>Re: Text data type and Length size problem</title>
      <link>https://community.esri.com/t5/data-management-questions/text-data-type-and-length-size-problem/m-p/257296#M14710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;By default, ArcSDE for Oracle stores text fields as nvarchar2.&amp;nbsp; The maximum size for nvarchar2 is 2000.&amp;nbsp; When a field is larger than 2000, SDE will convert the field to NCLOB.&amp;nbsp; To avoid this issue you will need to update your dbtune table so that text fields will be converted to varchar2 rather than nvarchar2.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To do this, export your dbtune table to a text file.&amp;nbsp; Ex:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;sdetable -o export -f c:\temp\dbtune.txt -i sde:oracle11g -u sde -p sde@orcl&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Add a parameter UNICODE_STRING with a string value of FALSE under the DEFAULTS keyword.&amp;nbsp; Save the text file and re-import into SDE:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;sdetable -o import -f c:\temp\dbtune.txt -i sde:oracle11g -u sde -p sde@orcl&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now you can import tables into SDE with text fields of size 4000 and it will be varchar2 rather than NCLOB.&amp;nbsp; Here is some further information on this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//002n00000067000000"&gt;http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//002n00000067000000&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Sep 2011 19:19:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/text-data-type-and-length-size-problem/m-p/257296#M14710</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2011-09-01T19:19:32Z</dc:date>
    </item>
    <item>
      <title>Re: Text data type and Length size problem</title>
      <link>https://community.esri.com/t5/data-management-questions/text-data-type-and-length-size-problem/m-p/257297#M14711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;'sdetable -o export' won't work, but 'sdedbtune -o export' will. Ditto with 'sdedbtune -o import'. &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- V&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Sep 2011 22:25:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/text-data-type-and-length-size-problem/m-p/257297#M14711</guid>
      <dc:creator>VinceAngelo</dc:creator>
      <dc:date>2011-09-01T22:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: Text data type and Length size problem</title>
      <link>https://community.esri.com/t5/data-management-questions/text-data-type-and-length-size-problem/m-p/257298#M14712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ooops, good catch V.&amp;nbsp; Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Sep 2011 10:51:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/text-data-type-and-length-size-problem/m-p/257298#M14712</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2011-09-02T10:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: Text data type and Length size problem</title>
      <link>https://community.esri.com/t5/data-management-questions/text-data-type-and-length-size-problem/m-p/1041757#M43180</link>
      <description>&lt;P&gt;I am experiencing similar issue when creating attribute field with field length - 5000 but with SQL Server 2016 not oracle. For some reason, the SQL Server sets the type - navchar(max) displaying field length of&amp;nbsp; 1073741822.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can this fixed by applying the same fix?&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/10527"&gt;@JakeSkinner&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/1060"&gt;@VinceAngelo&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Mar 2021 22:32:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/text-data-type-and-length-size-problem/m-p/1041757#M43180</guid>
      <dc:creator>Raj-Chavada</dc:creator>
      <dc:date>2021-03-29T22:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: Text data type and Length size problem</title>
      <link>https://community.esri.com/t5/data-management-questions/text-data-type-and-length-size-problem/m-p/1041767#M43181</link>
      <description>&lt;P&gt;Nevermind. I got my answer here -&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/data/geodatabases/manage-sql-server/data-types-sqlserver.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/help/data/geodatabases/manage-sql-server/data-types-sqlserver.htm&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems like I can do this by exporting and import database configuration keyword table. The UNICODE_STRING needs set to false "FALSE". This way I can create the text field with field length up to&amp;nbsp; 8000 characters.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Mar 2021 23:04:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/text-data-type-and-length-size-problem/m-p/1041767#M43181</guid>
      <dc:creator>Raj-Chavada</dc:creator>
      <dc:date>2021-03-29T23:04:19Z</dc:date>
    </item>
    <item>
      <title>Re: Text data type and Length size problem</title>
      <link>https://community.esri.com/t5/data-management-questions/text-data-type-and-length-size-problem/m-p/1552930#M45441</link>
      <description>&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-pro-questions/get-maximum-text-value-length-of-multiple-text/m-p/1552914/highlight/true#M89541" target="_self"&gt;Get maximum text value length of multiple text fields&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Idea: &lt;A href="https://community.esri.com/t5/arcgis-pro-ideas/import-table-set-text-field-length-to-input-field/idi-p/1552921" target="_self"&gt;Import Table — Set text field length to input field's max text value length&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2024 18:24:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/text-data-type-and-length-size-problem/m-p/1552930#M45441</guid>
      <dc:creator>Bud</dc:creator>
      <dc:date>2024-10-28T18:24:15Z</dc:date>
    </item>
  </channel>
</rss>

