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

What do I need to change in Sql Server to be able to store values like "2,1" in a decimal field? Right now I have to have dots like "2.1".

I have Finnish_Swedish_CI_AS collation on the database but that doesn't seem to be it ... I also fiddled around with the regions settings on the server but with no success. I know I've managed to change this before.

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

In security, your login properties, set default language to Finnish or Swedish. Although I'd prefer to format values into english standard and have default language set to english - this way storing data is independent of client regional settings.

link|improve this answer
Ok. Found it on the server instance under the advanced tab. Thanks. – Riri Nov 5 '09 at 8:52
There you can set default language for new logins - of course needed too; sorry I forgot that in my response. – Arvo Nov 5 '09 at 9:02
feedback

Store the data as a regular number - change it only when you display it.

link|improve this answer
I need to set up a test database with existing data so this will not work for me – Riri Nov 5 '09 at 8:48
You can try using @kevchadders idea to convert the data to the regular representation. on the new database. if your app reads a regular number - will it fail ? – Dani Nov 5 '09 at 9:36
feedback

As i side, if you wished to convert the dot to a comman in a stored proc, then you could use something like this.

DECLARE @numtest as DECIMAL(10,3)
SET @numtest = 123.456
SELECT @numtest -- decimal with dot
SELECT REPLACE(CONVERT(VARCHAR(13), @numtest), '.', ',') -- String with comma
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.