Home Forums SQL Server 2008 SQL Server 2008 - General Using REPLACE with a string where I need to replace %anystring% with some new string RE: Using REPLACE with a string where I need to replace %anystring% with some new string

  • Does this not work for you?

    select REPLACE(yourstring '%sometext%', 'replaced')

    from #temp