When I select I get the following value: 1.79769313486232E+308
The Column type is float.
When I'm trying to insert this value to the same table and column, I'm getting the following error:
The floating point value '1.79769313486232E+308' is out of the range of computer representation (8 byte)
When I select with master.dbo.fn_varbintohexstr(ColumnName)
I'm getting
the hex value as 0x7fefffffffffffff
which is less then 8 bytes...
Any explanation please?