up vote 6 down vote favorite
share [g+] share [fb]

i have a table (SQL Sever, in this case) 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 change just a portion of the path, but not the entire path. And - I need to change the same string to the new one, in every record.

How can i do this with a simple update?

link|improve this question

71% accept rate
feedback

2 Answers

up vote 8 down vote accepted

Its this easy:

update table
set path = replace(path, 'oldstring', 'newstring')
link|improve this answer
thank you, i just needed it very quickly – DaDa May 2 '09 at 9:47
d'oh! I wasn't quite fast enough ;-p – Marc Gravell May 2 '09 at 9:48
feedback
UPDATE [table]
SET [column] = REPLACE([column], '/foo/', '/bar/')
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.