Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: change db character set
Wai <reebok-wai_at_bigfoot.com> a écrit dans le message :
370C5692.C13C6ED2_at_bigfoot.com...
> I have create a database and have lot of data in it.
>
> Can I change the character set of the db?
> If yes, how can I do that? Is there any tool to help me?
>
> I am running oracle server 8.0.4 with win NT server 4 sp3
>
Yes you can but be careful, if you change it, you will lost any "accentuation".
Select * from sys.props$
where name = 'NLS_CHARACTERSET';
=> give you the current CHARACTERSET
and :
Update sys.props$
set value$='<NEW CHARACTERSET>'
where name='NLS_CHARACTERSET';
=> modify the characterset
It should work if my memory is good.
Be careful : you must type a good characterset !!!
DON'T FORGET TO SAVE YOUR DATABASE BEFORE. IT'S VERY DANGEROUS AND NOT SUPPORTED !!!
![]() |
![]() |