Mar 21, 2003 #1 forsyte Technical User Jun 27, 2002 4 US I have over 3000 records that need one particular character replaced. Anyone know how this is done in Enterprise Manager?
I have over 3000 records that need one particular character replaced. Anyone know how this is done in Enterprise Manager?
Mar 21, 2003 2 #2 swampBoogie Programmer Jan 6, 2003 1,660 SE update t set c = replace(c,'<your special character>','<new character'>) You are better off puting these questions in a SQL Server forum. Upvote 0 Downvote
update t set c = replace(c,'<your special character>','<new character'>) You are better off puting these questions in a SQL Server forum.
Mar 21, 2003 Thread starter #3 forsyte Technical User Jun 27, 2002 4 US swampboogie: COOL BEANS! It worked. Thanks for the quick response. Upvote 0 Downvote