Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Changing Data To Uppercase

Status
Not open for further replies.

FontanaS

Programmer
May 1, 2001
357
0
0
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!
 
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
nsjmcraig@netscape.net
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top