Banner

Important Site News

As part of the ongoing redesign and review of the Cybersalt sites, we've discovered why the commenting system wasn't working.  This has now been fixed!
Find and Replace in SQL Databases PDF Print E-mail
Written by Pastor Tim   
Friday, 02 May 2008 19:29

Most of us have used the find and replace function in word processors, but is there a similar feature for finding and things in SQL databases? Yes there is.

First of all, as is always the case, make sure you backup your SQL Database in case something unexpected occurs (especially errors between your keyboard and your seat) while you are working on it.

Next run your database find and replace operation based on the SQL command below:

update TABLENAME SET FIELDNAME = REPLACE(FIELDNAME, 'FIND','REPLACE')

So for instance, let's say that within your database you have a table named "articles" and in that table there is a field named "introduction". If you want to replace (in that field) every occurance of the word "free" with "almost free", the SQL command would look like this:

update articles set introduction = replace(introduction, 'free','almost free')

Just remember to be very careful when you "find and replace" things in your database or you may end up finding and replacing more than you want. The above example will also change everwhere "freedom" occurs to "almost freedom" and you might find your options to repair that mistake to restoring your backup.

Comments (0)Add Comment
Write comment
 
 
smaller | bigger
 

security image
Write the displayed characters


busy
Last Updated ( Friday, 02 May 2008 22:04 )
 
The Christian Counter