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 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
?
It's this easy:
update my_table
set path = replace(path, 'oldstring', 'newstring')