Multiplying two Decimal( 38, 21 ) variables I am getting what appears to be a decimal( x, 6 ) as a result( see below). I need the higher precision, any Ideas???
Declare @P Decimal( 38, 21 )
,@I decimal(38, 21)
Set @p = 499999.798513
Set @i = 1.00 / 1000000
Select @p * @i