up vote -1 down vote favorite
share [g+] share [fb]

Like this question, except T-SQL instead of php.

206275947 = 2062759.47

etc.

The problem I'm running into is that an attempt to SUM the values in this column is overflowing the integer datatype in SQL.

SUM(CONVERT(money,[PaymentInCentsAmt]))

Is just tacking on ".00" to the end of the value. What obvious thing am I missing?

link|improve this question

79% accept rate
feedback

2 Answers

up vote 5 down vote accepted

how about use money/100?

link|improve this answer
2  
slaps forehead thanks – Chris McCall Oct 21 '09 at 21:06
+1 for intense arithmetic – snicker Oct 21 '09 at 21:18
feedback

If you are counting money and especially if youare getting overflows you should try making variables and columns as type decimal that allows as much significance as the calcualations need

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.