Hi,
If I have the following simple table and a column of type float:
CREATE TABLE [dbo].[Table_1]([test] [float] NULL)
and perform the following command:
ALTER TABLE Table_1 ALTER COLUMN test float(8) NULL
the column is changed to "real" data type. Is this normal?