Find and Replace in all tables in text fields

  • Is there a way to replace text in all tables for fields that are text datatype?

    Thank you!

    Norbert

  • Hi,

    I used this to get rid of all £ signs out of data, you should be able to revise it for your purposes.

    DECLARE @TableName VARCHAR(255)

    SELECT @TableName = 'TableName'

    DECLARE @Sql VARCHAR(MAX)

    SELECT @Sql = 'UPDATE ' + QUOTENAME(@TableName) + '

    SET

    '

    SELECT @Sql = @Sql + ColName + ' = REPLACE(' + ColName + ', ''£'', ''''),

    '

    FROM

    (

    SELECT syscolumns.name as ColName

    FROM sysobjects

    JOIN syscolumns ON sysobjects.id = syscolumns.id

    JOIN systypes ON syscolumns.xtype = systypes.xtype

    WHERE

    sysobjects.name = @TableName

    AND systypes.name = 'text'

    ) Cols

    SELECT @Sql = STUFF(@Sql, LEN(@Sql) - 3, 1, '')

    PRINT (@Sql)

    --uncomment following line when you are happy with output

    --EXEC (@Sql)

    ///Edit commented out exec

  • How would I run it against all tables without specifying each one?

  • I found a solution here:

    http://www.mssqltips.com/tip.asp?tip=1555

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply