vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| I need to replace a portion of a url in a column as a result of changing servers. Is there a SELECT/REPLACE/UPDATE combination query that can do this. The table has close to a thousand entries and would be nice if a query can be set to do this. Tried the REPLACE example in the BOOKS ONLINE but it creates syntax error, apparently because it does not like the characters in the url and/or wildcards. I don't need to replace the entire url, only the portion before ".com". Thanks in anticipation of your help. Pradip Sagdeo |
| |||
| Pradip, This statement: select replace('http://www.technicalvideos.net','s.net','s14.net') seems to work OK, so, perhaps you could give your exact update and the exact error along with some sample data. Best regards, Chuck Conover www.TechnicalVideos.net "Pradip Sagdeo" <pradip.m.sagdeo@pfizer.com> wrote in message news:8dbc5a0f.0401280726.708a1c6@posting.google.co m... > I need to replace a portion of a url in a column as a result of > changing servers. Is there a SELECT/REPLACE/UPDATE combination query > that can do this. The table has close to a thousand entries and would > be nice if a query can be set to do this. Tried the REPLACE example > in the BOOKS ONLINE but it creates syntax error, apparently because it > does not like the characters in the url and/or wildcards. I don't need > to replace the entire url, only the portion before ".com". Thanks in > anticipation of your help. > > Pradip Sagdeo |
| |||
| Thanks. I will try again. Must have made a typing mistake. Pradip *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get rewarded for it! |
| ||||
| Pradip Sagdeo (pradip.m.sagdeo@pfizer.com) writes: > I need to replace a portion of a url in a column as a result of > changing servers. Is there a SELECT/REPLACE/UPDATE combination query > that can do this. The table has close to a thousand entries and would > be nice if a query can be set to do this. Tried the REPLACE example > in the BOOKS ONLINE but it creates syntax error, apparently because it > does not like the characters in the url and/or wildcards. I don't need > to replace the entire url, only the portion before ".com". Thanks in > anticipation of your help. Unfortunately, the replace() function does not support wildcards, so if you need to use that, you have to be creative. Or descend to use some client code to handle it. -- Erland Sommarskog, SQL Server MVP, sommar@algonet.se Books Online for SQL Server SP3 at http://www.microsoft.com/sql/techinf...2000/books.asp |