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
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
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
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