I have a huge data table (200+ million records) which stores cash amounts for which we are using the Money datatype. I need to increase the precision of this field to 8 or so decimal points.
Now I could simply go
ALTER TABLE CashTable ALTER COLUMN Cash decimal(23,8) null
I would like to know though if anyone has an idea of how this will perform, and whether there is any risk of loss of data.
Thanks