About 1,120,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 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 …

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

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

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

  8. sql - Arithmetic overflow error converting varchar to data type …

    From BOL: In Transact-SQL statements, a constant with a decimal point is automatically converted into a numeric data value, using the minimum precision and scale necessary. For …

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

  10. sql server - How to change data type of a column in an SQL table …

    1 Alter datatype of that column ..But In general sql wont allow to channge.It will prompt u drop that column..There is setting to achive that thing. Go to Tool-Option-designers-Table and Database …