If you just want to remove some rogue characters anywhere within the column you could do:UPDATE USET lastname = REPLACE(REPLACE(lastname, '"', ''), '/', '')FROM lm2_users UWHERE lastname LIKE '%"%' OR lastname LIKE '%/%'
if the pattern is restricted to surrounding the data you could probably doUPDATE USET lastname = SUBSTRING(lastname, 2, LEN(lastname)-3)FROM lm2_users UWHERE lastname LIKE '"%/"'
if I've got the "-3" bit calculated correctlyI'm sure there is a good reason why you hav a single quote around your table name, and the backslashes in your LIKE statement escapping characters, but they won't work in regular SQL Server AFAIKKristen