Consegui resolver ...
Achei uma Function no MSSQL .
/****** Object: UserDefinedFunction [dbo].[RemoverChar] Script Date: 21/03/2021 00:48:52 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER OFF
GO
--sc_13032009_RemoverChar
CREATE function [dbo].[RemoverChar](@x varchar(1000))
Returns varchar(1000)
as
Begin
declare @i int,@ret varchar(1000)
select @i=1,@ret=''
while @i<=len(@x) begin
IF ASCII(SUBSTRING(@X, @I, 1)) <> 0 BEGIN
select @ret=@ret+substring(@x,@i,1)
end
select @i=@i+1
end
return @ret
End
GO