I want to convert a varchar(max) column to decimal(10,4).
varchar(max)
decimal(10,4)
When I try to use cast or convert I am getting an arit
cast
convert
You are going to have to truncate the values yourself as strings before you put them into that column.
Otherwise, if you want more decimal places, you will need to change your declaration of the decimal column.