I searched in google and also visited the

decimal and numeric and SQL Server Helper

to glean the difference between numeric , float and decimal datatypes and also to find out which one should be used in which situation.

For any kind of financial transaction, which one is prefered and why? e.g. for salary field

link|improve this question

feedback

4 Answers

use the float or real data types only if the precision provided by decimal is insufficient

more useful information extracted from the cited book

  • numeric(precision, scale) = decimal(precision, scale) - Exact Numeric Data Types
  • real = float(24) - Approximate Numeric Data Types
  • All exact numeric types always produce the same result, regardless of which kind of processor architecture is being used or the magnitude of the numbers
  • 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.

Exact Numeric Data Types Approximate Numeric Data Types

source :

MCTS Self-Paced Training Kit (Exam 70-433): Microsoft® SQL Server® 2008 Database Development

Chapter 3 - Tables , Data Types , and Declarative Data Integrity Lesson 1

Choosing Data Types (Guidelines) - Page 93

MCTS Self-Paced Training Kit (Exam 70-433): Microsoft® SQL Server® 2008 Database Development

link|improve this answer
Nice explanation – Surya sasidhar Nov 1 '11 at 4:56
feedback
up vote 3 down vote accepted

Thanks I got the answer from this site

SQL SERVER – Difference and Explanation among DECIMAL, FLOAT and NUMERIC

link|improve this answer
feedback

Not a complete answer, but a useful link:

"I frequently do calculations against decimal values. In some cases casting decimal values to float ASAP, prior to any calculations, yields better accuracy. "

http://sqlblog.com/blogs/alexander_kuznetsov/archive/2008/12/20/for-better-precision-cast-decimals-before-calculations.aspx

link|improve this answer
feedback

Decimal has a fixed precision while float has variable precision.

EDIT (failed to read entire question): Float(53) (aka real) is a double-precision (32-bit) floating point number in SQL Server. Regular Float is a single-precision floating point number. Double is a good combination of precision and simplicty for a lot of calculations. You can create a very high precision number with decimal -- up to 136-bit -- but you also have to be careful that you define your precision and scale correctly so that it can contain all your intermediate calculations to the necessary number of digits.

link|improve this answer
You did not specify which is preferable while the case goes for financial transaction and why? – priyanka.sarkar Jun 29 '09 at 8:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.