About 171,000 results
Open links in new tab
  1. How to replace a string in a SQL Server Table Column

    May 2, 2009 · 414 I have a table (SQL Sever) which references paths (UNC or otherwise), but now the path is going to change. In the path column, I have many records and I need to …

  2. sql - UPDATE and REPLACE part of a string - Stack Overflow

    Jun 28, 2013 · sql sql-server string sql-server-2008 replace edited Sep 18, 2015 at 21:09 Beth 9,617 1 26 44

  3. sql server - Replace function in SQL - Stack Overflow

    Replace function in SQL Asked 7 years, 3 months ago Modified 7 years, 2 months ago Viewed 19k times

  4. sql - using if statement how to replace values - Stack Overflow

    Apr 13, 2013 · using if statement how to replace values Asked 12 years, 9 months ago Modified 10 years, 7 months ago Viewed 34k times

  5. How do I search for a ', ' and replace with ', '<CR><LF> in SQL …

    May 12, 2015 · In SQL Server Management Studio (SSMS), use the find/replace box with the "Use Regular Expressions" box selected and replace , (comma character) with ,\r\n (comma …

  6. Replace single quotes in SQL Server - Stack Overflow

    However, ordinarily you'd replace ' with '' and this will make SQL Server happy when querying the database. The trick with any of the built-in SQL functions (like replace) is that they too require …

  7. Remove numbers from string sql server - Stack Overflow

    Remove numbers from string sql server Asked 13 years, 2 months ago Modified 2 years, 1 month ago Viewed 187k times

  8. sql server - using REPLACE in WHERE clause to check spelling ...

    Jun 6, 2011 · One where any special characters are replaced with the _ in SQL, and one where all non-alpha chars (including spaces) are gone. I figure I can use the underscore in the SQL …

  9. Replacing a specific Unicode Character in SQL Server

    I'm using SQL Server Express 2012. I'm having trouble removing the unicode character U+02CC (Decimal : 716) in the grid results. The original text is 'λeˌβár'. I tried it like this, it doesn't work:

  10. sql server - SQL Nested Replace - Stack Overflow

    Oct 26, 2012 · I have a complex nested replace which I am using to join two tables in MSSQL. select * from A left outer join select * from B on replace( replace( replace( replace( ...