How to round a Column defined as Float on INSERT and UPDATE in SQL Server 2005 - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T07:34:43Zhttp://stackoverflow.com/feeds/question/515429http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/515429/how-to-round-a-column-defined-as-float-on-insert-and-update-in-sql-server-20050How to round a Column defined as Float on INSERT and UPDATE in SQL Server 2005Gerhard Weiss2009-02-05T11:01:21Z2009-02-07T13:09:34Z
<p>I am working on a Database that uses the Float data type to store values that should only be 2 decimal positions (dollars and cents). Using Float appears to work OK, as long as the person updating the Float column does a ROUND. Of course, this does not always happen and then when a SUM is done it is always off a few pennies from what is displayed because the display is formatted to show only 2 decmial positions. This database has hundreds of tables using Float and it would be helpful to be able to automatically ROUND the float columns.</p>
<p>Can this be done?</p>
<p>Can a TRIGGER be used on INSERT and UPDATE to do a ROUND on the Column?</p>
<p>If it can could you show how you would code the TRIGGER and would you recommend it?</p>
<p>Any other ideas?</p>
<p>We are using SQL Server 2005.</p>
<p>Here is a post that asks the question <a href="http://stackoverflow.com/questions/61872/use-float-or-decimal-for-accounting-application-dollar-amount">Use Float or Decimal for Accounting Application Dollar Amount?</a> and I like the one responce that said </p>
<p>"You should really consider using some type of fixed point / arbitrary-precision number package (e.g. java BigNum, python decimal module) otherwise you'll be in for a <strong>world of hurt</strong>". </p>
<p>I feel the pain!</p>
http://stackoverflow.com/questions/515429/how-to-round-a-column-defined-as-float-on-insert-and-update-in-sql-server-2005/515444#5154443Answer by paxdiablo for How to round a Column defined as Float on INSERT and UPDATE in SQL Server 2005paxdiablo2009-02-05T11:05:12Z2009-02-05T11:05:12Z<p>You can do triggers, this is not an unreasonable use of them at all. A pre-insert and pre-update trigger should work fine.</p>
<p>In addition, you can do a one-shot fix, something like:</p>
<pre><code>update tbl set column = round(column * 100) / 100
</code></pre>
<p>The syntax may not be perfect, but you should get the idea.</p>
<p>But I'm not sure I understand your "off by a few pennies" remark. You would have to sum a rather <strong>large</strong> number of floats for the errors to accumulate to 0.01. What is the column definition you're using?</p>
<p>Of course, one of the money-type decimal column definitions would be better for perfect accuracy but you may lose portability between DBMS'.</p>
http://stackoverflow.com/questions/515429/how-to-round-a-column-defined-as-float-on-insert-and-update-in-sql-server-2005/515474#5154743Answer by Dems for How to round a Column defined as Float on INSERT and UPDATE in SQL Server 2005Dems2009-02-05T11:15:45Z2009-02-05T11:15:45Z<p>If you have control over the system, are you able to used the DECIMAL /MONEY/NUMERIC data type instead of a FLOAT?</p>
<p>It is, after all, the point of the question you referenced.</p>
<p>If not, and like many of us you are forced to live in that world of pain, your triggers suggestion would work. I would prefer, however, to control that in a different way...<br />
- Don't allow apps or users direct write access to the tables<br />
- Force access through SPs </p>
<p>I have also seen a system where write access is given to one (input/holding) table. This table then has a trigger on it to copy (and format/validate) the data into the real table.</p>
http://stackoverflow.com/questions/515429/how-to-round-a-column-defined-as-float-on-insert-and-update-in-sql-server-2005/515846#5158461Answer by Mike Woodhouse for How to round a Column defined as Float on INSERT and UPDATE in SQL Server 2005Mike Woodhouse2009-02-05T13:16:16Z2009-02-05T13:16:16Z<p>I don't think you can get exactly what you want by rounding. Rounding a float won't work accurately and dependably: whatever you do, you're going to be trying to apply a decimal rounding to a binary number and that just isn't going to be exact for anything but a power of 2.</p>
<p>You can only get accurate database-stored decimal representations of arbitrary sub-integer quantities by using a decimal datatype that's expressly designed for the purpose. These datatypes typically utilise some form of packed-decimal storage (so less efficient than binary) where, for example 2009 is stored as <code>0x2009</code>.</p>
<p>What happens if you use the <a href="http://msdn.microsoft.com/en-us/library/ms187928.aspx" rel="nofollow">CONVERT</a> function? Have you tried querying using something like this?</p>
<pre><code>CONVERT(money, your_float_column)
</code></pre>
<p>Long-term, I think I'd consider adding a column to my table that has the desired type and maintaining its value through post-insert/update triggers, then over time switch all my code to use that column instead.</p>
<p>Then I'd hunt down and punish the individuals who thought it was a good idea to store money amounts in a float...</p>