How many digits can be stored for a number in SQL Server 2005? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T11:52:08Zhttp://stackoverflow.com/feeds/question/417305http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/417305/how-many-digits-can-be-stored-for-a-number-in-sql-server-20050How many digits can be stored for a number in SQL Server 2005?thursdaysgeek2009-01-06T16:55:21Z2009-01-06T17:17:10Z
<p>I have a number from an Oracle database of 47306832975095894070.85314746810624532. When I bring it into SQL Server, it certainly doesn't show that many digits. It shows as 4.73068329750959E+19, and the field is defined as FLOAT. </p>
<p>I think that probably includes all the significant digits, but I'm being asked if the number can be stored exactly as Oracle had it. Is there a another data type that will store ALL the digits? Is there a way in SQL Server 2005 to display the number not in exponential, but show all the digits stored?</p>
http://stackoverflow.com/questions/417305/how-many-digits-can-be-stored-for-a-number-in-sql-server-2005/417310#4173103Answer by Alex Reitbort for How many digits can be stored for a number in SQL Server 2005?Alex Reitbort2009-01-06T16:57:49Z2009-01-06T16:57:49Z<p>Use decimal data type.
decimal(p,s) - p is a precision value, s is a scale value.</p>
http://stackoverflow.com/questions/417305/how-many-digits-can-be-stored-for-a-number-in-sql-server-2005/417314#4173143Answer by G Mastros for How many digits can be stored for a number in SQL Server 2005?G Mastros2009-01-06T16:58:22Z2009-01-06T16:58:22Z<p>instead of float, use Decimal(38,17). This should allow you to store the number with the same precision that you had in Oracle.</p>
http://stackoverflow.com/questions/417305/how-many-digits-can-be-stored-for-a-number-in-sql-server-2005/417392#4173922Answer by Mac for How many digits can be stored for a number in SQL Server 2005?Mac2009-01-06T17:17:10Z2009-01-06T17:17:10Z<p>The equivalent of the <a href="http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/sql_elements001.htm#SQLRF00222" rel="nofollow">NUMBER</a><em>(p, s)</em> Oracle datatype on Sql Server is the <a href="http://msdn.microsoft.com/en-us/library/ms187746(SQL.90).aspx" rel="nofollow">numeric</a><em>(p, s)</em> datatype. Note that the default values for <em>p</em> (precision) and <em>s</em> (scale) are not the same on both platforms.</p>
<p>On Sql Server, a <a href="http://msdn.microsoft.com/en-us/library/ms173773(SQL.90).aspx" rel="nofollow">float</a> represents a floating point number that is a whole different, <a href="http://blogs.msdn.com/ericlippert/archive/2005/01/10/floating-point-arithmetic-part-one.aspx" rel="nofollow">approximate representation</a> of a number. On Oracle, the equivalent would be <a href="http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/sql_elements001.htm#i140621" rel="nofollow">BINARY_DOUBLE</a>.</p>