Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: how to change the case from lowercase to uppercase ?

Re: how to change the case from lowercase to uppercase ?

From: Sybrand Bakker <postbus_at_sybrandb.demon.nl>
Date: Tue, 4 Apr 2000 07:22:45 +0200
Message-ID: <954825817.4410.2.pluto.d4ee154e@news.demon.nl>

<newnewbie_at_my-deja.com> wrote in message news:8cbsmt$r3d$1_at_nnrp1.deja.com...
> i have 2,000 records in the database which is in lowercase.
>
> how can i update these records to be uppercase without deleting them
> and adding them again ?
>
>
> thanks for reading my post.
>
>
> Sent via Deja.com http://www.deja.com/
> Before you buy.

Yes you are a real newbie
UPDATE <table_name>
set <affected column> = UPPER(<affected column>) /
commit
/
and so on for all affected tables.

Hth,

Sybrand Bakker, Oracle DBA Received on Tue Apr 04 2000 - 00:22:45 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US