FLOAT issue with SQL Data Compare 5
phispher
Posts: 11
I have searched in vain for a resolution to this problem. Let me set the stage first. I have a table in SQL with a float column. I used Query Analyzer to query a value and I get:
-97.398719999999997
However, when SQL Data Compare attempts to synchronize this to another database, it tries to pull it accross as follows:
-97.39872
Since we have a unique contraint on that column, this obviously causes issues. How can I resolve the problem.
Thanks for you help in advance.
-97.398719999999997
However, when SQL Data Compare attempts to synchronize this to another database, it tries to pull it accross as follows:
-97.39872
Since we have a unique contraint on that column, this obviously causes issues. How can I resolve the problem.
Thanks for you help in advance.
Comments
If this is the same issue, we have seen this before in an older version of Data Compare. It's not the accuracy of the software that's to blame, but rather what happens to the data as it appears in the results grid. Since all float numbers are rounded off, the values can potentially be different, even if the byte values are equal. If you produce a migration script from this data comparison, is the value reflected correctly in the script?
Thanks!
INSERT INTO [dbo].[DATA_FLOAT] ([data_float_id], [data_float], [_temp_data_float_id]) VALUES (25555, -97.39872, NULL)
So, as you can see, the sync script is truncating it too.
Sorry, I think I've given out some wrong information. It's actually SQL Server performing the rounding. This is true with float numbers, which rather than being hard values, are approximations.
While a float might approximate a particular real number, it is an exact binary value representing an exact number.
It is reasonable to expect operations on it to give the closest answer and not resort to "but it's approximate!"
Here the question is whether the decimal representation is the best available for reproducing that float when doing synchronization.
SQL Server fails at this task.
SQL Data Compare does not have to fail if it would use 17 significant decimal digits or transfer numbers in a different form.
This problem is in addition to the earlier reported need for SQL Data Compare to specify that the data value is float by using E0 on the end, since SQL otherwise assumes it is decimal and incorrectly converts some numbers to float, such as 0.85195833333333271 versus 0.85195833333333271e0 which are not equal numbers to SQL.