<?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 Strange SQL error -10811 Numeric overflow for parameter/column in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/strange-sql-error-10811-numeric-overflow-for-parameter-column/m-p/11745167#M1949846</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;today we got a few ABAP short dumps:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;&lt;SPAN class="mceitemhidden"&gt;SQL error "SQL code: -10811" occurred while accessing table "Z079_&lt;/SPAN&gt;&lt;SPAN class="mceitemhiddenspellword"&gt;CV&lt;/SPAN&gt;&lt;SPAN class="mceitemhidden"&gt;_LOG".&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="mceitemhidden"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Database error text: "SQL message: Numeric overflow for parameter/column (32)&lt;/P&gt;
&lt;P&gt;source type DECIMAL, target type UCS2 (LE), value&lt;/P&gt;
&lt;P&gt;'0.974204418927118174949782384017408E25'"&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;An exception has occurred which is explained in more detail below. The&lt;/P&gt;
&lt;P&gt;exception is assigned to class 'CX_SY_OPEN_SQL_DB' and was not caught in&lt;/P&gt;
&lt;P&gt;procedure&lt;/P&gt;
&lt;P&gt;"READ_Z079_CV_LOG" "(METHOD)", nor was it propagated by a RAISING clause.&lt;/P&gt;
&lt;P&gt;Since the caller of the procedure could not have anticipated this&lt;/P&gt;
&lt;P&gt;exception, the current program was terminated.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;The reason for the exception is:&lt;/P&gt;
&lt;P&gt;Database error text: SQL message: Numeric overflow for parameter/column (32)&lt;/P&gt;
&lt;P&gt;source type DECIMAL, target type UCS2 (LE), value&lt;/P&gt;
&lt;P&gt;'0.974204418927118174949782384017408E25'&lt;/P&gt;
&lt;P&gt;Return value of the database layer: "SQL dbsl rc: 99"&lt;/P&gt;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is very strange because the select is very simple, there is no SUM or any possibility to value conversion. It has to put all fields into structure of the same type as DB table. The table &lt;SPAN class="mceitemhidden"&gt;Z079_&lt;/SPAN&gt;&lt;SPAN class="mceitemhiddenspellword"&gt;CV&lt;/SPAN&gt;&lt;SPAN class="mceitemhidden"&gt;_LOG is a transparent table.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mceitemhidden"&gt;data &lt;/SPAN&gt;&lt;SPAN class="mceitemhiddenspellword"&gt;LS&lt;/SPAN&gt;&lt;SPAN class="mceitemhidden"&gt;_Z079_&lt;/SPAN&gt;&lt;SPAN class="mceitemhiddenspellword"&gt;CV&lt;/SPAN&gt;&lt;SPAN class="mceitemhidden"&gt;_LOG TYPE Z079_&lt;/SPAN&gt;&lt;SPAN class="mceitemhiddenspellword"&gt;CV&lt;/SPAN&gt;&lt;SPAN class="mceitemhidden"&gt;_LOG.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="l0s52"&gt;SELECT SINGLE *&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="l0s52"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INTO l&lt;/SPAN&gt;&lt;SPAN class="mceitemhiddenspellword"&gt;s&lt;/SPAN&gt;&lt;SPAN class="mceitemhidden"&gt;_z079_&lt;/SPAN&gt;&lt;SPAN class="mceitemhiddenspellword"&gt;cv&lt;/SPAN&gt;&lt;SPAN class="mceitemhidden"&gt;_log&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="l0s52"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM &lt;/SPAN&gt;&lt;SPAN class="mceitemhidden"&gt;z079_&lt;/SPAN&gt;&lt;SPAN class="mceitemhiddenspellword"&gt;cv&lt;/SPAN&gt;&lt;SPAN class="mceitemhidden"&gt;_log&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="l0s52"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WHERE &lt;/SPAN&gt;&lt;SPAN class="mceitemhiddenspellword"&gt;cv&lt;/SPAN&gt;&lt;SPAN class="mceitemhidden"&gt;_type &lt;/SPAN&gt;&lt;SPAN class="l0s55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="mceitemhidden"&gt;iv_&lt;/SPAN&gt;&lt;SPAN class="mceitemhiddenspellword"&gt;cv&lt;/SPAN&gt;&lt;SPAN class="mceitemhidden"&gt;_type&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="l0s52"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AND key_ref &lt;/SPAN&gt;&lt;SPAN class="l0s55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="l0s52"&gt;iv_key_ref&lt;/SPAN&gt;&lt;SPAN class="l0s55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="l0s55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="l0s55"&gt;When I try to reproduce the error, everything is ok. There is no strange values in the table shown in SE16N nor in Hana Studio.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;We work on HANA DB version 1.00.097.03.1443520413&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The column no. 32 in the table is of type Decimal 9,5:&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/969669" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you heard about such problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Rafal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Jun 2016 13:13:32 GMT</pubDate>
    <dc:creator>rafal_matuszewski2</dc:creator>
    <dc:date>2016-06-07T13:13:32Z</dc:date>
    <item>
      <title>Strange SQL error -10811 Numeric overflow for parameter/column</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/strange-sql-error-10811-numeric-overflow-for-parameter-column/m-p/11745167#M1949846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;today we got a few ABAP short dumps:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;&lt;SPAN class="mceitemhidden"&gt;SQL error "SQL code: -10811" occurred while accessing table "Z079_&lt;/SPAN&gt;&lt;SPAN class="mceitemhiddenspellword"&gt;CV&lt;/SPAN&gt;&lt;SPAN class="mceitemhidden"&gt;_LOG".&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="mceitemhidden"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Database error text: "SQL message: Numeric overflow for parameter/column (32)&lt;/P&gt;
&lt;P&gt;source type DECIMAL, target type UCS2 (LE), value&lt;/P&gt;
&lt;P&gt;'0.974204418927118174949782384017408E25'"&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;An exception has occurred which is explained in more detail below. The&lt;/P&gt;
&lt;P&gt;exception is assigned to class 'CX_SY_OPEN_SQL_DB' and was not caught in&lt;/P&gt;
&lt;P&gt;procedure&lt;/P&gt;
&lt;P&gt;"READ_Z079_CV_LOG" "(METHOD)", nor was it propagated by a RAISING clause.&lt;/P&gt;
&lt;P&gt;Since the caller of the procedure could not have anticipated this&lt;/P&gt;
&lt;P&gt;exception, the current program was terminated.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;The reason for the exception is:&lt;/P&gt;
&lt;P&gt;Database error text: SQL message: Numeric overflow for parameter/column (32)&lt;/P&gt;
&lt;P&gt;source type DECIMAL, target type UCS2 (LE), value&lt;/P&gt;
&lt;P&gt;'0.974204418927118174949782384017408E25'&lt;/P&gt;
&lt;P&gt;Return value of the database layer: "SQL dbsl rc: 99"&lt;/P&gt;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is very strange because the select is very simple, there is no SUM or any possibility to value conversion. It has to put all fields into structure of the same type as DB table. The table &lt;SPAN class="mceitemhidden"&gt;Z079_&lt;/SPAN&gt;&lt;SPAN class="mceitemhiddenspellword"&gt;CV&lt;/SPAN&gt;&lt;SPAN class="mceitemhidden"&gt;_LOG is a transparent table.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mceitemhidden"&gt;data &lt;/SPAN&gt;&lt;SPAN class="mceitemhiddenspellword"&gt;LS&lt;/SPAN&gt;&lt;SPAN class="mceitemhidden"&gt;_Z079_&lt;/SPAN&gt;&lt;SPAN class="mceitemhiddenspellword"&gt;CV&lt;/SPAN&gt;&lt;SPAN class="mceitemhidden"&gt;_LOG TYPE Z079_&lt;/SPAN&gt;&lt;SPAN class="mceitemhiddenspellword"&gt;CV&lt;/SPAN&gt;&lt;SPAN class="mceitemhidden"&gt;_LOG.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="l0s52"&gt;SELECT SINGLE *&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="l0s52"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INTO l&lt;/SPAN&gt;&lt;SPAN class="mceitemhiddenspellword"&gt;s&lt;/SPAN&gt;&lt;SPAN class="mceitemhidden"&gt;_z079_&lt;/SPAN&gt;&lt;SPAN class="mceitemhiddenspellword"&gt;cv&lt;/SPAN&gt;&lt;SPAN class="mceitemhidden"&gt;_log&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="l0s52"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM &lt;/SPAN&gt;&lt;SPAN class="mceitemhidden"&gt;z079_&lt;/SPAN&gt;&lt;SPAN class="mceitemhiddenspellword"&gt;cv&lt;/SPAN&gt;&lt;SPAN class="mceitemhidden"&gt;_log&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="l0s52"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WHERE &lt;/SPAN&gt;&lt;SPAN class="mceitemhiddenspellword"&gt;cv&lt;/SPAN&gt;&lt;SPAN class="mceitemhidden"&gt;_type &lt;/SPAN&gt;&lt;SPAN class="l0s55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="mceitemhidden"&gt;iv_&lt;/SPAN&gt;&lt;SPAN class="mceitemhiddenspellword"&gt;cv&lt;/SPAN&gt;&lt;SPAN class="mceitemhidden"&gt;_type&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="l0s52"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AND key_ref &lt;/SPAN&gt;&lt;SPAN class="l0s55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="l0s52"&gt;iv_key_ref&lt;/SPAN&gt;&lt;SPAN class="l0s55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="l0s55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="l0s55"&gt;When I try to reproduce the error, everything is ok. There is no strange values in the table shown in SE16N nor in Hana Studio.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;We work on HANA DB version 1.00.097.03.1443520413&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The column no. 32 in the table is of type Decimal 9,5:&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/969669" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you heard about such problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Rafal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2016 13:13:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/strange-sql-error-10811-numeric-overflow-for-parameter-column/m-p/11745167#M1949846</guid>
      <dc:creator>rafal_matuszewski2</dc:creator>
      <dc:date>2016-06-07T13:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: Strange SQL error -10811 Numeric overflow for parameter/column</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/strange-sql-error-10811-numeric-overflow-for-parameter-column/m-p/11745168#M1949847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am assuming this is not a table, this should be external view....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Increase length of field in HANA view then sync and activate the external view....&lt;/P&gt;&lt;P&gt;e.g 23.9&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case to avoid dump you can use exception like CX_SY_OPEN_SQL_DB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Amol S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2016 14:06:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/strange-sql-error-10811-numeric-overflow-for-parameter-column/m-p/11745168#M1949847</guid>
      <dc:creator>amol_samte</dc:creator>
      <dc:date>2016-06-07T14:06:46Z</dc:date>
    </item>
    <item>
      <title>Re: Strange SQL error -10811 Numeric overflow for parameter/column</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/strange-sql-error-10811-numeric-overflow-for-parameter-column/m-p/11745169#M1949848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;no, it is not an external view. This is normal table (with storage type: column store):&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/969749" height="339" width="405" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2016 14:39:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/strange-sql-error-10811-numeric-overflow-for-parameter-column/m-p/11745169#M1949848</guid>
      <dc:creator>rafal_matuszewski2</dc:creator>
      <dc:date>2016-06-07T14:39:31Z</dc:date>
    </item>
    <item>
      <title>Re: Strange SQL error -10811 Numeric overflow for parameter/column</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/strange-sql-error-10811-numeric-overflow-for-parameter-column/m-p/11745170#M1949849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sounds strange. Better create a CSS ticket on component BC-ABA-LA.&lt;/P&gt;&lt;P&gt;Best Regards, Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2016 11:57:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/strange-sql-error-10811-numeric-overflow-for-parameter-column/m-p/11745170#M1949849</guid>
      <dc:creator>thomasgauweiler</dc:creator>
      <dc:date>2016-06-08T11:57:10Z</dc:date>
    </item>
    <item>
      <title>Re: Strange SQL error -10811 Numeric overflow for parameter/column</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/strange-sql-error-10811-numeric-overflow-for-parameter-column/m-p/11745171#M1949850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rafal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try se14-&amp;gt;enter the table name-&amp;gt;edit-&amp;gt; activate and adjust database (with the direct radio button selected, and the save data radio button selected)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jacob Levinson&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2016 16:43:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/strange-sql-error-10811-numeric-overflow-for-parameter-column/m-p/11745171#M1949850</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-06-08T16:43:00Z</dc:date>
    </item>
    <item>
      <title>Re: Strange SQL error -10811 Numeric overflow for parameter/column</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/strange-sql-error-10811-numeric-overflow-for-parameter-column/m-p/11745172#M1949851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good idea,&lt;/P&gt;&lt;P&gt;but before adjusting the database table, please have a look at SE11 and check if Runtime Object and Database Object are in sync.&lt;/P&gt;&lt;P&gt;Regards, Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2016 17:27:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/strange-sql-error-10811-numeric-overflow-for-parameter-column/m-p/11745172#M1949851</guid>
      <dc:creator>thomasgauweiler</dc:creator>
      <dc:date>2016-06-08T17:27:24Z</dc:date>
    </item>
  </channel>
</rss>

