Falls du mal ein fixes Zahlenformat erzwingen muss kann folgendes SQL-Query sehr hilfreich sein:
select CONVERT(decimal(20,2),251.124) --Ergibt: 251.12
select CONVERT(decimal(20,2),251.8) -Ergibt: 251.80
Verschiedenes aus meiner Welt…
select CONVERT(decimal(20,2),251.124) --Ergibt: 251.12
select CONVERT(decimal(20,2),251.8) -Ergibt: 251.80