If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
Are there any examples of an update query that can search a field for a set of characters and replace only those characters? EG "ABC1234" change all BC to DE.
You might find it faster to return the record set "...where [field] like * &[search term] & *" and then itterate thru' the recordset doing an update little by little (unless the fields are more or less the same.
It will be slowish to VERY VERY slow to do it that way (depends on a bunch of stuff) so if Replace() works with your SQL version go for it. Otherwise welcome to slow-ville.