I have a nvarchar field (COLDES) in the db COL. I need to replace any comma in the field with a space (there are about 10,000 records to go through). I've created a Stored Procedure that looks like this:
CREATE PROCEDURE [dbo].[LoanAnalysis_Update] AS
BEGIN
UPDATE COL
SET COLDES = REPLACE([COLDES],","," ")
END
GO
I'm I reaching in the right direction?
CREATE PROCEDURE [dbo].[LoanAnalysis_Update] AS
BEGIN
UPDATE COL
SET COLDES = REPLACE([COLDES],","," ")
END
GO
I'm I reaching in the right direction?