Comments
Sort by recent activity
The compare apparently rounds at 13 decimal places - in our case there were more data past 13 decimal places - we used the following to see this :
select cast(column as decimal(25,15)) from table / comments
The compare apparently rounds at 13 decimal places - in our case there were more data past 13 decimal places - we used the following to see this :
select cast(column as decimal(25,15)) from table
That was it exactly - once I queried the fields and CAST them out further I saw the exact values. / comments
That was it exactly - once I queried the fields and CAST them out further I saw the exact values.