<?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 arcpy.ArcSDESQLExecute() returns a negative value from SDE.CONPRESS_LOG Table on update Python 2.7 to Python 3.0 in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/arcpy-arcsdesqlexecute-returns-a-negative-value/m-p/1492652#M70819</link>
    <description>&lt;P&gt;Hello Everyone&lt;/P&gt;&lt;P&gt;I updated a python script from 2.7 (ArcGISx6410.9\python.exe) to 3.0 (arcgispro-py3\python.exe) and now it returns a strange negative value for the&amp;nbsp;SDE_ID column.&lt;/P&gt;&lt;P&gt;2.7 correct.&lt;/P&gt;&lt;P&gt;04:24:15 INFO &lt;STRONG&gt;1040058&lt;/STRONG&gt;, 10432, Y, 02-Jun-2024 04:22:54, 1, 02-Jun-2024 04:22:54, 1, SUCCESS&lt;/P&gt;&lt;P&gt;3.0 not correct.&lt;/P&gt;&lt;P&gt;15:51:31 INFO&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -&lt;STRONG&gt;6974&lt;/STRONG&gt;, 14992, Y, 07-Jun-2024 04:22:52, 1, 07-Jun-2024 04:22:52, 1, SUCCESS&lt;/P&gt;&lt;P&gt;If I run the same select statement in SQL Developer, we use Oracle, the query returns the correct values&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;script:&lt;/P&gt;&lt;P&gt;# connection to SDE Tables&lt;BR /&gt;sde_conn_SDE = arcpy.ArcSDESQLExecute(conn)&lt;/P&gt;&lt;P&gt;sql_val = "SELECT &lt;STRONG&gt;SDE_ID&lt;/STRONG&gt;, SERVER_ID, DIRECT_CONNECT, TO_CHAR(COMPRESS_START,'DD-Mon-YYYY HH24:MI:SS') as COMPRESS_START, START_STATE_COUNT, TO_CHAR(COMPRESS_END,'DD-Mon-YYYY HH24:MI:SS') as COMPRESS_END, END_STATE_COUNT, COMPRESS_STATUS FROM SDE.COMPRESS_LOG WHERE SDE_ID IN (SELECT MAX(SDE_ID) FROM SDE.COMPRESS_LOG)"&lt;BR /&gt;# read value&lt;BR /&gt;AddPrintMessage(sql_val,0)&lt;BR /&gt;logging.info(sql_val)&lt;BR /&gt;&lt;BR /&gt;sdeReturn = sde_conn_SDE.execute(sql_val)&lt;BR /&gt;headings = "&lt;STRONG&gt;SDE_ID&lt;/STRONG&gt;, SERVER_ID, DIRECT_CONNECT, COMPRESS_START, START_STATE_COUNT, COMPRESS_END, END_STATE_COUNT, COMPRESS_STATUS"&lt;BR /&gt;AddPrintMessage(headings,0)&lt;BR /&gt;logging.info(headings)&lt;BR /&gt;&lt;BR /&gt;for i in sdeReturn: #data list&lt;BR /&gt;parameters = []&lt;BR /&gt;para = ""&lt;BR /&gt;#print i&lt;BR /&gt;for j in i:&lt;BR /&gt;parameters.append(j)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;para = &lt;STRONG&gt;str(parameters[0])&lt;/STRONG&gt; + ", " + str(parameters[1]) + ", " + str(parameters[2]) + ", " + str(parameters[3]) + ", " + str(parameters[4]) + ", " + str(parameters[5]) + ", " + str(parameters[6]) + ", " + str(parameters[7])&lt;BR /&gt;AddPrintMessage(str(para),0)&lt;BR /&gt;logging.info(str(para))&lt;/P&gt;&lt;P&gt;Can anyone see the issue? Feedback appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 14 Jun 2024 11:27:46 GMT</pubDate>
    <dc:creator>JamesMorrison1</dc:creator>
    <dc:date>2024-06-14T11:27:46Z</dc:date>
    <item>
      <title>arcpy.ArcSDESQLExecute() returns a negative value from SDE.CONPRESS_LOG Table on update Python 2.7 to Python 3.0</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-arcsdesqlexecute-returns-a-negative-value/m-p/1492652#M70819</link>
      <description>&lt;P&gt;Hello Everyone&lt;/P&gt;&lt;P&gt;I updated a python script from 2.7 (ArcGISx6410.9\python.exe) to 3.0 (arcgispro-py3\python.exe) and now it returns a strange negative value for the&amp;nbsp;SDE_ID column.&lt;/P&gt;&lt;P&gt;2.7 correct.&lt;/P&gt;&lt;P&gt;04:24:15 INFO &lt;STRONG&gt;1040058&lt;/STRONG&gt;, 10432, Y, 02-Jun-2024 04:22:54, 1, 02-Jun-2024 04:22:54, 1, SUCCESS&lt;/P&gt;&lt;P&gt;3.0 not correct.&lt;/P&gt;&lt;P&gt;15:51:31 INFO&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -&lt;STRONG&gt;6974&lt;/STRONG&gt;, 14992, Y, 07-Jun-2024 04:22:52, 1, 07-Jun-2024 04:22:52, 1, SUCCESS&lt;/P&gt;&lt;P&gt;If I run the same select statement in SQL Developer, we use Oracle, the query returns the correct values&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;script:&lt;/P&gt;&lt;P&gt;# connection to SDE Tables&lt;BR /&gt;sde_conn_SDE = arcpy.ArcSDESQLExecute(conn)&lt;/P&gt;&lt;P&gt;sql_val = "SELECT &lt;STRONG&gt;SDE_ID&lt;/STRONG&gt;, SERVER_ID, DIRECT_CONNECT, TO_CHAR(COMPRESS_START,'DD-Mon-YYYY HH24:MI:SS') as COMPRESS_START, START_STATE_COUNT, TO_CHAR(COMPRESS_END,'DD-Mon-YYYY HH24:MI:SS') as COMPRESS_END, END_STATE_COUNT, COMPRESS_STATUS FROM SDE.COMPRESS_LOG WHERE SDE_ID IN (SELECT MAX(SDE_ID) FROM SDE.COMPRESS_LOG)"&lt;BR /&gt;# read value&lt;BR /&gt;AddPrintMessage(sql_val,0)&lt;BR /&gt;logging.info(sql_val)&lt;BR /&gt;&lt;BR /&gt;sdeReturn = sde_conn_SDE.execute(sql_val)&lt;BR /&gt;headings = "&lt;STRONG&gt;SDE_ID&lt;/STRONG&gt;, SERVER_ID, DIRECT_CONNECT, COMPRESS_START, START_STATE_COUNT, COMPRESS_END, END_STATE_COUNT, COMPRESS_STATUS"&lt;BR /&gt;AddPrintMessage(headings,0)&lt;BR /&gt;logging.info(headings)&lt;BR /&gt;&lt;BR /&gt;for i in sdeReturn: #data list&lt;BR /&gt;parameters = []&lt;BR /&gt;para = ""&lt;BR /&gt;#print i&lt;BR /&gt;for j in i:&lt;BR /&gt;parameters.append(j)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;para = &lt;STRONG&gt;str(parameters[0])&lt;/STRONG&gt; + ", " + str(parameters[1]) + ", " + str(parameters[2]) + ", " + str(parameters[3]) + ", " + str(parameters[4]) + ", " + str(parameters[5]) + ", " + str(parameters[6]) + ", " + str(parameters[7])&lt;BR /&gt;AddPrintMessage(str(para),0)&lt;BR /&gt;logging.info(str(para))&lt;/P&gt;&lt;P&gt;Can anyone see the issue? Feedback appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jun 2024 11:27:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-arcsdesqlexecute-returns-a-negative-value/m-p/1492652#M70819</guid>
      <dc:creator>JamesMorrison1</dc:creator>
      <dc:date>2024-06-14T11:27:46Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.ArcSDESQLExecute() returns a negative value from SDE.CONPRESS_LOG Table on update Python 2.7 to Python 3.0</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-arcsdesqlexecute-returns-a-negative-value/m-p/1492746#M70820</link>
      <description>&lt;P&gt;I tested your code in SQL Developer (Oracle 19c) and in Python (ArcGIS Pro 3.1.3) and the&amp;nbsp;SDE_ID value is the same both times: the correct (non-negative) id.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jun 2024 14:30:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-arcsdesqlexecute-returns-a-negative-value/m-p/1492746#M70820</guid>
      <dc:creator>BlakeTerhune</dc:creator>
      <dc:date>2024-06-14T14:30:31Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.ArcSDESQLExecute() returns a negative value from SDE.CONPRESS_LOG Table on update Python 2.7 to Python 3.0</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-arcsdesqlexecute-returns-a-negative-value/m-p/1492766#M70821</link>
      <description>&lt;P&gt;Thanks for testing Blake. Appreciated.&amp;nbsp;&lt;BR /&gt;Could it be related to how Python converts the value&amp;nbsp;&lt;STRONG&gt;1040058 to a string?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jun 2024 15:00:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-arcsdesqlexecute-returns-a-negative-value/m-p/1492766#M70821</guid>
      <dc:creator>JamesMorrison1</dc:creator>
      <dc:date>2024-06-14T15:00:15Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.ArcSDESQLExecute() returns a negative value from SDE.CONPRESS_LOG Table on update Python 2.7 to Python 3.0</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-arcsdesqlexecute-returns-a-negative-value/m-p/1492805#M70824</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/102272"&gt;@JamesMorrison1&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Could it be related to how Python converts the value&amp;nbsp;&lt;STRONG&gt;1040058 to a string?&amp;nbsp;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;That doesn't seem reasonable to me, but you can test that with &lt;FONT face="courier new,courier"&gt;print(sdeReturn)&lt;/FONT&gt; before you do all that parsing and formatting.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jun 2024 16:31:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-arcsdesqlexecute-returns-a-negative-value/m-p/1492805#M70824</guid>
      <dc:creator>BlakeTerhune</dc:creator>
      <dc:date>2024-06-14T16:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.ArcSDESQLExecute() returns a negative value from SDE.CONPRESS_LOG Table on update Python 2.7 to Python 3.0</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-arcsdesqlexecute-returns-a-negative-value/m-p/1492807#M70825</link>
      <description>&lt;P&gt;Hi Blake. Nor to me. But nothing else makes any logical sense yet. basically the same script with small updates to handle error handling in Python 3 &amp;nbsp;strange all other attributes in the row are returned correctly except this one &amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the suggestion. I try some more debugging over the weekend and report back.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jun 2024 16:35:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-arcsdesqlexecute-returns-a-negative-value/m-p/1492807#M70825</guid>
      <dc:creator>JamesMorrison1</dc:creator>
      <dc:date>2024-06-14T16:35:27Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.ArcSDESQLExecute() returns a negative value from SDE.CONPRESS_LOG Table on update Python 2.7 to Python 3.0</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-arcsdesqlexecute-returns-a-negative-value/m-p/1492826#M70828</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/102272"&gt;@JamesMorrison1&lt;/a&gt;is not alone with this issue. I'm also seeing this behavior (&lt;A href="https://community.esri.com/t5/python-questions/seeking-clarity-regarding-arcpy-arcsdesqlexecute/m-p/1374566" target="_blank" rel="noopener"&gt;link to my original post&lt;/A&gt; showing my example).&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jun 2024 17:12:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-arcsdesqlexecute-returns-a-negative-value/m-p/1492826#M70828</guid>
      <dc:creator>David_Lindsey</dc:creator>
      <dc:date>2024-06-14T17:12:21Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.ArcSDESQLExecute() returns a negative value from SDE.CONPRESS_LOG Table on update Python 2.7 to Python 3.0</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-arcsdesqlexecute-returns-a-negative-value/m-p/1492910#M70830</link>
      <description>&lt;P&gt;Thanks for chiming in,&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/26431"&gt;@David_Lindsey&lt;/a&gt;! Seeing as I'm on Pro 3.1.3, it makes sense that I am not able to replicate the issue. Looking forward to your results with Pro 3.3.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jun 2024 18:20:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-arcsdesqlexecute-returns-a-negative-value/m-p/1492910#M70830</guid>
      <dc:creator>BlakeTerhune</dc:creator>
      <dc:date>2024-06-14T18:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.ArcSDESQLExecute() returns a negative value from SDE.CONPRESS_LOG Table on update Python 2.7 to Python 3.0</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-arcsdesqlexecute-returns-a-negative-value/m-p/1494852#M70854</link>
      <description>&lt;P&gt;Hello Blake we have found the issue but have no reason why?&lt;/P&gt;&lt;P&gt;My only thought is when the value 1041602 gets converted to a sting str(parameters[0]) – there is an int overflow but this does not make too much sense to me. Google offered some insights but no direct answer.&lt;/P&gt;&lt;P&gt;The script above&amp;nbsp; gave different resuls between python.exe : ArcGIS Pro 3.1 / 3.9.16 and ArcGIS Server 11.2 / 3.9.18&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[1]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;DESCRIBE SDE.COMPRESS_LOG;&lt;/P&gt;&lt;P&gt;Name Null? Typ&lt;BR /&gt;----------------- -------- ------------&lt;BR /&gt;SDE_ID NOT NULL NUMBER(38)&lt;BR /&gt;SERVER_ID NOT NULL NUMBER(38)&lt;BR /&gt;DIRECT_CONNECT NOT NULL VARCHAR2(1)&lt;BR /&gt;COMPRESS_START NOT NULL DATE&lt;BR /&gt;START_STATE_COUNT NOT NULL NUMBER(38)&lt;BR /&gt;COMPRESS_END DATE&lt;BR /&gt;END_STATE_COUNT NUMBER(38)&lt;BR /&gt;COMPRESS_STATUS VARCHAR2(20)&lt;/P&gt;&lt;P&gt;SQL Developer – all is correct&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SDE_ID&amp;nbsp; SERVER_ID D COMPRESS_START&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; START_STATE_COUNT COMPRESS_END&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; END_STATE_COUNT COMPRESS_STATUS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;---------- ---------- - -------------------- ----------------- -------------------- --------------- --------------------&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;1041602&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 14992 Y 07-Jun-2024 04:22:52&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;&amp;nbsp; 1 07-Jun-2024 04:22:52&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; 1 SUCCESS&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[2]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;ArcGIS Pro 3.1 / 3.9.16 ArcGIS\Pro\bin\Python\envs\arcgispro-py3\python.exe test.py – all is correct&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1041602&lt;/STRONG&gt;, 14992, Y, 07-Jun-2024 04:22:52, 1, 07-Jun-2024 04:22:52, 1, SUCCESS&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[3]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;ArcGIS Server 11.2 / 3.9.18 ArcGIS\Server\framework\runtime\ArcGIS\bin\Python\envs\arcgispro-py3\python.exe test.py – all is not ok. A minus value is being returned.&lt;/P&gt;&lt;P&gt;-&lt;STRONG&gt;6974&lt;/STRONG&gt;, 14992, Y, 07-Jun-2024 04:22:52, 1, 07-Jun-2024 04:22:52, 1, SUCCESS&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2024 11:04:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-arcsdesqlexecute-returns-a-negative-value/m-p/1494852#M70854</guid>
      <dc:creator>JamesMorrison1</dc:creator>
      <dc:date>2024-06-19T11:04:34Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.ArcSDESQLExecute() returns a negative value from SDE.CONPRESS_LOG Table on update Python 2.7 to Python 3.0</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-arcsdesqlexecute-returns-a-negative-value/m-p/1494989#M70858</link>
      <description>&lt;P&gt;Update: Try upgrading to Pro 3.3.0 and test again. I'm not seeing anything specific regarding this issue in the release notes, but our negative number problem resolved itself in Python once we upgraded to 3.3.0.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2024 16:04:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-arcsdesqlexecute-returns-a-negative-value/m-p/1494989#M70858</guid>
      <dc:creator>David_Lindsey</dc:creator>
      <dc:date>2024-06-19T16:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy.ArcSDESQLExecute() returns a negative value from SDE.CONPRESS_LOG Table on update Python 2.7 to Python 3.0</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-arcsdesqlexecute-returns-a-negative-value/m-p/1495210#M70865</link>
      <description>&lt;P&gt;Thank you for the reply A_G.&lt;/P&gt;&lt;P&gt;Just to be clear:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ArcGIS Pro 3.1 with python 3.9.16&amp;nbsp;returns the correct value:&amp;nbsp;&lt;STRONG&gt;1041602&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ArcGIS Server 11.2 with 3.9.18&amp;nbsp;returns the incorrect value:&amp;nbsp;-&lt;STRONG&gt;6974&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So it is the small python difference x.x.16 v x.x.18&amp;nbsp; which is affecting the result. Plus sadly we can not just upgrade to Pro 3.3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;To confirm the incorrect value appears:&lt;/P&gt;&lt;P&gt;sdeReturn = sde_conn_SDE.execute(sql_val)&lt;BR /&gt;print("sdeReturn: " + str(sdeReturn))&lt;BR /&gt;sdeReturn: [[&lt;STRONG&gt;-6974&lt;/STRONG&gt;, 14992, 'Y', '07-Jun-2024 04:22:52', 1, '07-Jun-2024 04:22:52', 1, 'SUCCESS']]&lt;/P&gt;&lt;P&gt;So I assume there is an issue between ArcGIS Pro and ArcGIS Server when calling this function?&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2024 11:26:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-arcsdesqlexecute-returns-a-negative-value/m-p/1495210#M70865</guid>
      <dc:creator>JamesMorrison1</dc:creator>
      <dc:date>2024-06-20T11:26:33Z</dc:date>
    </item>
  </channel>
</rss>

