I have a column which has decimal value of 18,8. I was asked to extend it to 18,18 to hold more places after ,.

ALTER TABLE [dbo].[TransakcjeGotowkowe]
ALTER COLUMN TransakcjeGotowkoweKwota decimal (18,18) NULL

Msg 8115, Level 16, State 8, Line 1
Arithmetic overflow error converting numeric to data type numeric.
The statement has been terminated.

I have also tried to do it by GUI. Nothing else changes just want to hold more data after ,.

Is there other way to do this ?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

The Decimal datatype is made up of (precision, scale)

Precision is the total number of digits to the left AND the right of the decimal point.

Scale is the number of digits to the right of the decimal point.

If you want to increase the number of digits to the right to 18 you will need to increase the overall precision. In your case increase it by 10.

So you will need decimal(28,18)

MSDN Article on Precision & Scale

link|improve this answer
Lovely :-) I love StackOverflow users :-) – MadBoy Oct 21 '10 at 12:28
1  
@Martin - Yes I have just re-read the question. I'll update my answer. Thanks – Barry Oct 21 '10 at 12:30
Having it at 36,18 doesn't affect the values and I can have it that way? It only gives me space for higher values if I ever need it? Or would it be better to keep at 28,18 ? – MadBoy Oct 21 '10 at 12:33
1  
@MadBoy - 36,18 is 17 bytes per row. 28,18 is 13 bytes. Whether or not that will affect the number of rows that fit on a page depends on the rest of your table definition. – Martin Smith Oct 21 '10 at 12:37
2  
As i understand it decimal (18,8) actually allows storage of 10,8. So if i want to have 10,18 it needs to be (28,18).Hence the increase in precision by 10. – MadBoy Oct 21 '10 at 12:44
show 4 more comments
feedback

You would need to change it to 28,18 Your current column allows 10 digits to the left of the decimal point.

Changing it to 18,18 would only allow a range between +/-0.999999999999999999

link|improve this answer
Thanks for explanation. – MadBoy Oct 21 '10 at 12:28
feedback

Your Answer

 
or
required, but never shown

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