About 52 results
Open links in new tab
  1. Difference between numeric, float and decimal in SQL Server

    Jun 29, 2009 · The parameter supplied to the float data type defines the number of bits that are used to store the mantissa of the floating point number. Approximate Numeric Data Type …

  2. Is there any difference between DECIMAL and NUMERIC in SQL …

    Apr 17, 2009 · If you do not specify precision or scale, the implementation uses default values, as it does with the NUMERIC type. It seems that the difference on some implementations of SQL …

  3. sql - Difference between DECIMAL and NUMERIC - Stack Overflow

    What's the difference between the SQL datatype NUMERIC and DECIMAL ? If databases treat these differently, I'd like to know how for at least: SQL Server Oracle Db/2 MySQL …

  4. SQL Server : error converting data type varchar to numeric

    Jan 4, 2013 · Returns the result of an expression, translated to the requested data type, or null if the cast fails in SQL Server. Use TRY_PARSE only for converting from string to date/time and …

  5. sql - How do I interpret precision and scale of a number in a …

    The example quoted by would have a precision of 7 and a scale of 2. Moreover, DECIMAL (precision, scale) is an exact value data type unlike something like a FLOAT (precision, scale) …

  6. SQL Server: Error converting data type nvarchar to numeric

    Oct 21, 2015 · Error converting data type nvarchar to numeric. COLUMNA contains only numbers (negative and positive) including fields with maximal up to two digits after the decimal and is …

  7. Is there any reason for numeric rather than int in T-SQL?

    Sep 30, 2016 · decimal Fixed precision and scale numeric data from -10^38 -1 through 10^38 -1. numeric A synonym for decimal. int Integer (whole number) data from -2^31 (-2,147,483,648) …

  8. Why SQL Server throws Arithmetic overflow error converting int to …

    Lets see, numeric (3,2). That means you have 3 places for data and two of them are to the right of the decimal leaving only one to the left of the decimal. 15 has two places to the left of the …

  9. Arithmetic overflow error converting numeric to data type numeric

    Jan 13, 2011 · Arithmetic overflow error converting int to data type numeric. This error will occur when inserting data is not matching with declared decimal data type in the table.

  10. Choosing best datatype for numeric column in SQL Server

    Feb 9, 2021 · I have a table in SQL Server with large amount of data - around 40 million rows. The base structure is like this: Title type length Null distribution Customer-Id number 8 60% …