About 22,000 results
Open links in new tab
  1. Passing a decimal to a stored procedure - social.msdn.microsoft.com

    Jun 11, 2010 · The SqlCommand Parameters does not offer a way to set precision of the passed in value, as far as I am aware, just to set the datatype and value. It seems like there is a …

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

  3. How to compare the decimal? - social.msdn.microsoft.com

    Jun 30, 2011 · also return null, how to compare the decimal column?Thanks.

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

    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 …

  5. SQLGetData for fetching decimal values - social.msdn.microsoft.com

    Oct 31, 2009 · I am using SQLGetData for fetching float data type from sql server database, but I am unable to get correct decimal value.

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

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

  8. Sqlbulkcopy Error : The given value of type SqlDecimal from the …

    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 …

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

  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 …