Tagged Questions
1
vote
2answers
174 views
Sql Server significant digits
I have a variable that I want to return a max of 5 to the left of the decimal and always 3 to the right
CONVERT(VARCHAR(14),CONVERT(DECIMAL(8,3),
...
0
votes
3answers
504 views
How many digits can be stored for a number in SQL Server 2005?
I have a number from an Oracle database of 47306832975095894070.85314746810624532. When I bring it into SQL Server, it certainly doesn't show that many digits. It shows as 4.73068329750959E+19, and ...