| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> c.d.o.misc -> Re: how to change the case from lowercase to uppercase ?
<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
![]() |
![]() |