Windows error 0x80131516, -2146233066

Detailed Error Information

COR_E_OVERFLOW[1]

Message"Arithmetic, casting or conversion operation overflowed or underflowed."
Comment An arithmetic, casting, or conversion operation overflowed or underflowed.

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode19 (0x013)
NameFACILITY_URT[2][3]
DescriptionThe source of the error code is .NET CLR.[2][3]
Error Code5398 (0x1516)

Questions

4votes
4answers

Difference between two large numbers C#

There are already solutions to this problem for small numbers: * Here: Difference between 2 numbers * Here: C# function to find the delta of two numbers * Here: How can I find the difference between 2 values in C#? I'll summarise the answer to them all: Math.Abs(a - b) [...] read more
c#
math
difference
integer-overflow
0votes
1answer

C# - Arithmetic overflow - Decompression of string via gzipstream

I'm having an issue with implementing a GZIP string decompressor. The compressed string is a20d32fdda14b300b28aa6b72982af3b as shown below. However, when running this code, I receive the error: "System.OverflowException occurred HResult=0x80131516 Message=Arithmetic operation resulted in an overflow. StackTrace: at GZipDecompressor.Decompress.Main(String[] args) " when executing the line starting with "byte[] buffer2" using [...] read more
c#
gzipstream
0votes
1answer

DQS failed to execute in the package SSIS 2012

I am new to used the SSIS! I'm trying to use the DQS within the package to apply the business role on a specific column in the source table i.e. Contact title. This column takes different job titles related to Sales people, matching the values on the domain to the [...] read more
sql
ssis
data-quality-services
-1votes
2answers

ODBC - overflow

I've an ODBC connection to reach an Oracle database, the connection does Open(). I get an overflow error when i try to access to data in the DB. private void button4_Click(object sender, EventArgs e) { string MySelectString = "SELECT * FROM QE_AGENT.IMP_BANK WHERE BANK_LOT = '13120314' AND BANK_COMPTE = '1021'"; [...] read more
c#
oracle
odbc

Comments

Leave a comment

(plain text only)

Sources

  1. https://github.com/dotnet/coreclr/blob/v1.1.0/src/inc/corerror.xml
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx
  3. winerror.h from Windows SDK 10.0.14393.0

User contributions licensed under CC BY-SA 3.0