About 1,050,000 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. 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 …

  3. what is numeric(18, 0) in sql server 2008 r2 - Stack Overflow

    As a numeric the allowable range that can be stored in that field is -10^38 +1 to 10^38 - 1. The first number in parentheses is the total number of digits that will be stored. Counting both sides …

  4. sql - Arithmetic overflow error converting nvarchar to data type ...

    I have a column in sql which is sometimes nvarchar and number in some cases. The column has a datatype nvarchar . I am just interested in the places where its numeric where none numeric …

  5. SQL Server : Arithmetic overflow error converting expression to …

    One of your expressions needs to be casted/converted to an int in order for this to go through, which is the meaning of Arithmetic overflow error converting expression to data type int.

  6. 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) …

  7. SQL - Numeric data type with leading zeros - Stack Overflow

    Aug 26, 2011 · SQL Server handles the storage of the data differently between CHAR and VARCHAR. SQL Server’s BOL (Books On Line) says : Use CHAR when the size of the …

  8. sql server - CAST and IsNumeric - Stack Overflow

    Select Cast(Data as bigint) From @Temp Where IsNumeric(Data) = 1 And Data Is Not NULL There is a trick you can use with IsNumeric so that it returns 0 for numbers with scientific …

  9. 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 …

  10. .net - C# Equivalent of SQL Server DataTypes - Stack Overflow

    SQL Server and the .NET Framework are based on different type systems. For example, the .NET Framework Decimal structure has a maximum scale of 28, whereas the SQL Server decimal …