Hi Below one is model table, am getting strange issue, i dont knowhow overcome this issueDeclare @t table( a numeric(4,2))Declare @b varchar(4)Set @b='2004'Insert into @tSelect ISNULL(CONVERT(decimal(4,2),@b), 0)
In above things, working in trigger. Passing parameter is varchar type. we tried to insert varchar type to number type field. at the time am getting error message.Arithmetic overflow error converting varchar to data type numeric.Even i tried to convert the varchar to numberic, and also am getting same issue. Can any one please guide, how to convert the above one.Suri