About 14,500 results
Open links in new tab
  1. How to Pass in a SQL Decimal with Precision and Scale using DAAB?

    Jan 18, 2010 · SqlDatabase has a generic AddParameter () method that does contain a precision/scale but it also includes other things that don't matter to me (or don't make sense when using an OUTPUT …

  2. SQL SERVER 2016 Setup/Upgrade Error: Client Tools SDK and Client …

    Nov 22, 2018 · I tired to Update SQL Server 2014 Enterprise to SQL Server 2016 Enterprise today. All components succeeded except Client Tools SDK and Client Tools Backwards Compatibility.

  3. Converting Float data to decimal - social.msdn.microsoft.com

    Apr 12, 2010 · If you convert that value to decimal (18,7) it will be stored as 0.0100000 which is different. So you would need to use a better decimal precision (like decimal (38,27)).

  4. LINQ Query with Sum and Group By is adding Decimal Precision

    Aug 26, 2009 · I think maybe the issue is caused by the precision of the decimal type in .NET. Since the LINQ query is actually converted into SQL command to retrieve the database data, the operations …

  5. obtener la parte decimal en sql - social.msdn.microsoft.com

    Aug 9, 2011 · Pregunta 0 Inicie sesión para votar tengo el siguiente inconveniente, necesito obtener la aprte decimal de una operación en sql, digamos 1/12= 0,08333333333333

  6. smallint from SQL to INT C# - social.msdn.microsoft.com

    Oct 7, 2021 · 0 Sign in to vote User281315223 posted The smallint data type maps directly to an Decimal datatype in C# : Decimal yourValue =42.0m; Marked as answer byAnonymousThursday, …

  7. Sqlbulkcopy Error : The given value of type SqlDecimal from the data ...

    Jun 19, 2008 · Hi, The table in SQL has column Availability Decimal (8,8) Code in c# using sqlbulkcopy trying to insert values like 0.0000, 0.9999, 29.999 into the field Availability we tried the datatype float …

  8. convert value to 2 decimal places? - social.msdn.microsoft.com

    Oct 13, 2010 · Hello, is there a way to convert the value to just 2 decimal places, I created the report in Reporting Services and it has quite a few digits to each value. I looked at the table and found that the …

  9. Converter Decimal para Money - social.msdn.microsoft.com

    Jun 4, 2011 · SELECT CONVERT (varchar, CONVERT (money, CAST (MTRF.VALOR AS Decimal (15, 2))), 1) AS VALOR Resultado: 7,567,500.00 quarta-feira, 6 de abril de 2011 14:02

  10. Getting truncation when converting from float to decimal

    Nov 3, 2009 · The only way to get a non-truncated decimal value from a float consistently is to convert to string then convert to decimal. But again, you should never use float with financial data. By never, I …