The information in this article applies to:
BUG #: 53260 (SQLBUG_70) SYMPTOMS
The "float and real (T-SQL)" topic in the SQL Server 7.0 Books Online defines the synonym for 'double precision' as float(53). The number 53 is the maximum number of bits used to store the mantissa of the number in scientific notation. The storage size for the float(53) data type is 8 bytes with a precision of 15 digits.
This can be verified by executing either of the following statements:
WORKAROUNDTo work around this problem, replace the synonym for 'double precision' with float(53) and the column definition is maintained. STATUSMicrosoft has confirmed this to be a problem in SQL Server version 7.0. Additional query words: BOL SQLBOL datatype datatypes types char
Keywords : SSrvProg kbbug7.00 |
Last Reviewed: January 30, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |