<?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: Problem with CopyRows_management to in memory with Python 3 in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/problem-with-copyrows-management-to-in-memory-with/m-p/663025#M51535</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Reading over,&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;One of my users has a script that works in 2.7 and was working with 3.x but now breaks after the ArcGIS Pro 2.4.1 update.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;The first part of the statement implies it is an ArcMap vs. ArcGIS Pro issue since ArcMap is Python 2.x and ArcGIS Pro is Python 3.x; however, the second part of the statement implies it is an ArcGIS Pro 2.4 vs Pro 2.4.1 issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does the script work in Pro 2.4?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Sep 2019 19:08:17 GMT</pubDate>
    <dc:creator>JoshuaBixby</dc:creator>
    <dc:date>2019-09-06T19:08:17Z</dc:date>
    <item>
      <title>Problem with CopyRows_management to in memory with Python 3</title>
      <link>https://community.esri.com/t5/python-questions/problem-with-copyrows-management-to-in-memory-with/m-p/663024#M51534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One of my users has a script that works in 2.7 and was working with 3.x but now breaks after the ArcGIS Pro 2.4.1 update.&amp;nbsp; When copying an SDE table into memory using the&amp;nbsp;arcpy.CopyRows_management all text field sizes are increasing from what there are to 5000.&amp;nbsp; For example, text fields of size 1 and 100 become 5000.&amp;nbsp; Our tables are a SQL 2012 / SDE&amp;nbsp;10.4.1 geodatabase.&amp;nbsp; To see if I could replicate this issue I even created an empty table from scratch containing only two fields, the first is DataSource defined text length 100 and the&amp;nbsp;other is Flag defined as text length 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is anyone else seeing this?&amp;nbsp; The user says it was working in version 3 before we pushed out Pro 2.4.1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;c:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3&amp;gt;python.exe h:\treg\test_inmemory2.py&lt;BR /&gt;SDE table is : H:\Treg\(Prod)&amp;nbsp;&lt;SPAN style="background-color: #f6f6f6;"&gt;MyDatabase&lt;/SPAN&gt;&lt;A href="mailto:GeoLib@ArcGISPub_Reader.sde\GeoLib.DBO.WS_Test" rel="nofollow noopener noreferrer" target="_blank"&gt;@Reader.sde\&lt;SPAN style="color: #3d3d3d; background-color: #f6f6f6;"&gt;MyDatabase&lt;/SPAN&gt;.DBO.WS_Test&lt;/A&gt;&lt;/P&gt;&lt;P&gt;OBJECTID is a type OID with a length of 4&lt;/P&gt;&lt;P&gt;DataSource is a type String with a length of 100&lt;BR /&gt;Flag is a type String with a length of 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Copying table H:\Treg\(Prod) MyDatabase@Reader.sde\&lt;SPAN style="background-color: #f6f6f6;"&gt;MyDatabase&lt;/SPAN&gt;.DBO.WS_Test into memory...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;temp table is : memory\tmpTable&lt;/P&gt;&lt;P&gt;OBJECTID is a type OID with a length of 4&lt;BR /&gt;DataSource is a type String with a length of 5000&lt;BR /&gt;Flag is a type String with a length of 5000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;try&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
    &lt;SPAN class="comment token"&gt;##Import modules&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; os&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; sys
    &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; os&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;path &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; path
    &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; traceback

    &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; arcpy
    &lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; arcpy &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; env

    arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;overwriteOutput &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token boolean"&gt;True&lt;/SPAN&gt;

    
    sdeTable &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"H:\Treg\(Prod) MyDatabase@Reader.sde\MyDatabase.DBO.WS_Test"&lt;/SPAN&gt;
    tmpTable &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"memory\tmpTable"&lt;/SPAN&gt;    

    &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'SDE table is : {}\n'&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;sdeTable&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;  
    
    &lt;SPAN class="comment token"&gt;##check field lengths in SDE text fields&lt;/SPAN&gt;
    fields &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListFields&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;sdeTable&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; field &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; fields&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
        &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'{0} is a type {1} with a length of {2}'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;field&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;name&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; field&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;type&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; field&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;length&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

    &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'\nCopying table {} into memory...'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;sdeTable&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;CopyRows_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;sdeTable&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; tmpTable&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;    
    

    &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'\ntemp table is : {}\n'&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;tmpTable&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;    

    &lt;SPAN class="comment token"&gt;##check field length on in memory text fields&lt;/SPAN&gt;
    fields &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListFields&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;tmpTable&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; field &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; fields&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
        &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'{0} is a type {1} with a length of {2}'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;field&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;name&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; field&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;type&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; field&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;length&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;except&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'\n*** ERROR IN SCRIPT!'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'\n***PYTHON ERROR INFO: \n'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt;  str&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;traceback&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format_exc&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;&lt;SPAN class="punctuation token"&gt;)&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;/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;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;/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;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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 04:02:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/problem-with-copyrows-management-to-in-memory-with/m-p/663024#M51534</guid>
      <dc:creator>RandyKreuziger</dc:creator>
      <dc:date>2021-12-12T04:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with CopyRows_management to in memory with Python 3</title>
      <link>https://community.esri.com/t5/python-questions/problem-with-copyrows-management-to-in-memory-with/m-p/663025#M51535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Reading over,&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;One of my users has a script that works in 2.7 and was working with 3.x but now breaks after the ArcGIS Pro 2.4.1 update.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;The first part of the statement implies it is an ArcMap vs. ArcGIS Pro issue since ArcMap is Python 2.x and ArcGIS Pro is Python 3.x; however, the second part of the statement implies it is an ArcGIS Pro 2.4 vs Pro 2.4.1 issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does the script work in Pro 2.4?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2019 19:08:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/problem-with-copyrows-management-to-in-memory-with/m-p/663025#M51535</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2019-09-06T19:08:17Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with CopyRows_management to in memory with Python 3</title>
      <link>https://community.esri.com/t5/python-questions/problem-with-copyrows-management-to-in-memory-with/m-p/663026#M51536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Josh,&lt;/P&gt;&lt;P&gt;&amp;nbsp; You are correct, I didn't mention Pro vs ArcMap because we run these scripts in a CMD window. Also, we upgraded all of our ArcGIS Pros to 2.4.1 so I haven't been able to test it with an early version of Pro.&amp;nbsp; I changed the script to run with python 2.7 to&amp;nbsp;verify that it, at least, worked correctly in ArcMap python.&amp;nbsp; The only change needed was changing line 14 from memory to in_memory.&amp;nbsp; Having said that, CopyRows shouldn't be changing field definitions in the first place.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2019 19:16:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/problem-with-copyrows-management-to-in-memory-with/m-p/663026#M51536</guid>
      <dc:creator>RandyKreuziger</dc:creator>
      <dc:date>2019-09-06T19:16:11Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with CopyRows_management to in memory with Python 3</title>
      <link>https://community.esri.com/t5/python-questions/problem-with-copyrows-management-to-in-memory-with/m-p/663027#M51537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What happens when you use the old/legacy "in_memory" in Pro instead of using the new "memory" workspace?&amp;nbsp; It could be a difference in the in-memory workspace implementation more than Pro or ArcMap.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2019 19:22:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/problem-with-copyrows-management-to-in-memory-with/m-p/663027#M51537</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2019-09-06T19:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with CopyRows_management to in memory with Python 3</title>
      <link>https://community.esri.com/t5/python-questions/problem-with-copyrows-management-to-in-memory-with/m-p/663028#M51538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I ran a process in a Spyder window not the python window with Pro 2.4 installed on my desktop and while I don't have an answer for you, I can confirm that a text field from an egdb to in_memory stayed the same length....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2019 20:01:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/problem-with-copyrows-management-to-in-memory-with/m-p/663028#M51538</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2019-09-06T20:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with CopyRows_management to in memory with Python 3</title>
      <link>https://community.esri.com/t5/python-questions/problem-with-copyrows-management-to-in-memory-with/m-p/663029#M51539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Joshua, that fixed the issue.&amp;nbsp; I'll report this behavior to&amp;nbsp; ESRI since it seems like a bug.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2019 20:27:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/problem-with-copyrows-management-to-in-memory-with/m-p/663029#M51539</guid>
      <dc:creator>RandyKreuziger</dc:creator>
      <dc:date>2019-09-06T20:27:06Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with CopyRows_management to in memory with Python 3</title>
      <link>https://community.esri.com/t5/python-questions/problem-with-copyrows-management-to-in-memory-with/m-p/663030#M51540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please mark a comment/suggestion as correct to close out the question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2019 21:41:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/problem-with-copyrows-management-to-in-memory-with/m-p/663030#M51540</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2019-09-06T21:41:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with CopyRows_management to in memory with Python 3</title>
      <link>https://community.esri.com/t5/python-questions/problem-with-copyrows-management-to-in-memory-with/m-p/663031#M51541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am experiencing something very similar. I copy parcels to 'memory', add fields using a dictionary that comes from a template feature class. Every text/string field comes out as 5000.&amp;nbsp;&lt;/P&gt;&lt;P&gt;edit: python 3&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Mar 2020 00:33:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/problem-with-copyrows-management-to-in-memory-with/m-p/663031#M51541</guid>
      <dc:creator>DanDeegan</dc:creator>
      <dc:date>2020-03-07T00:33:41Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with CopyRows_management to in memory with Python 3</title>
      <link>https://community.esri.com/t5/python-questions/problem-with-copyrows-management-to-in-memory-with/m-p/663032#M51542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am experiencing the same issue in Arc Pro 2.5&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I installed a fresh copy of Arc Pro 2.4 on a new laptop for some testing:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Copying into 'memory' changes all text fields to length 5000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Copy into 'in_memory' maintains the text field sizes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since the new capabilities of the 'memory' space are important to my project, going to 'in_memory' is not really a viable option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone confirm that this has actually been entered as a bug at Esri, and is being worked on?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2020 00:46:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/problem-with-copyrows-management-to-in-memory-with/m-p/663032#M51542</guid>
      <dc:creator>ToddTurner</dc:creator>
      <dc:date>2020-04-08T00:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with CopyRows_management to in memory with Python 3</title>
      <link>https://community.esri.com/t5/python-questions/problem-with-copyrows-management-to-in-memory-with/m-p/663033#M51543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If it is a bug, it isn't in the posted bug list, so maybe it hasn't been reported&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.esri.com/en/Search-Results#search?q=memory%20workspace&amp;amp;content-type=Bugs"&gt;https://support.esri.com/en/Search-Results#search?q=memory%20workspace&amp;amp;content-type=Bugs&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/45316"&gt;Kory Kramer&lt;/A&gt;‌&amp;nbsp; 5000 sounds familiar, but not sure if it is associated with the memory workspace&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2020 01:35:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/problem-with-copyrows-management-to-in-memory-with/m-p/663033#M51543</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2020-04-08T01:35:02Z</dc:date>
    </item>
  </channel>
</rss>

