Does anyone know why when you run a script to create a table in SQL2000, it automatically changes your datatype from a float(8) to a real(4)?
Example:
create table Test( myfloat float(8))
go
Then if you run sp_columns test is shows
Table_qualifier: XXX
Table_Owner:dbo
Table_Name:Test
Column_Name:myfloat
Data_Type: 7
Type_Name: real
Presision:7
Length:4
Thank,
Kat