Aug 14, 2002 #1 FontanaS Programmer May 1, 2001 357 US Is There An Easy Way To Changes Existing Data In A Table To Uppercase, Or Do I Have To Create Some Stored Procedure? THANKS!
Is There An Easy Way To Changes Existing Data In A Table To Uppercase, Or Do I Have To Create Some Stored Procedure? THANKS!
Aug 14, 2002 #2 JMCraig Programmer Feb 20, 2002 217 US Well, you could do something like this: update table_name set column_name = upper (column_name) If the table is really huge, you'll need to break this up into blocks and you'll need to consider setting the log to truncate on checkpoint. HTH, John J M Craig Alpha-G Consulting, LLC http://alphagconsulting.bizhosting.comnsjmcraig@netscape.net Upvote 0 Downvote
Well, you could do something like this: update table_name set column_name = upper (column_name) If the table is really huge, you'll need to break this up into blocks and you'll need to consider setting the log to truncate on checkpoint. HTH, John J M Craig Alpha-G Consulting, LLC http://alphagconsulting.bizhosting.comnsjmcraig@netscape.net