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

Home -> Community -> Usenet -> c.d.o.server -> Re: Force Upper Case

Re: Force Upper Case

From: Jerome Vitalis <vitalismanN0SP4M_at_gmail.com.invalid>
Date: Fri, 05 Oct 2007 20:14:32 +0200
Message-ID: <47067f48$0$9184$79c14f64@nan-newsreader-07.noos.net>


learning_codes_at_hotmail.com wrote:
> Hi,
>
> I have about more than 175 fields. Some are different (Characters,
> Date, Numeric, etc). I'm trying to force all capital letter only on
> Character Types at once. I hate to type each of the fields.
>
> Ucase([LastName])
>
> How to set for all fields (characters only) ?
>
> Your help would be much appreciated.
> Thanks
>

select the column names in user_tab_columns and generate an "update ... set xxx=upper(xxx)" for each of them (e.g. by spooling sqlplus output to go.sql and running go.sql afterward.) Received on Fri Oct 05 2007 - 13:14:32 CDT

Original text of this message

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