|
Just got the help of other people in the forum, I also try to answer a question, let’s talk about it.
"How to modify the character set of the database, and at which step to choose the character set support during installation"
1. I remember that it was the last step of dbca, the step of initialization parameters, there is a tab that can be selected in the character sets. According to your requirements, you may need to use AL32UTF8 type.
2. On the issue of modification.
I have tried to use the reconfiguration function of dbca for this problem, but those options are always grayed out and cannot be modified.
Later I learned about the View that displays the setting value:
nls_database_parameters.
--------
select name,
substr(value$, 1, 40)
from props$
where name like'NLS%'
--------
By displaying all the values you can find: NLS_NCHAR_CHARACTERSET AL16UTF16
This is the place to set the character format, and then modify the table props$,
update props set value$=’AL32UTF8’ where name=’NLS_NCHAR_CHARACTERSET’
Through the above method, I successfully changed the character format.
I hope useful to you. |
|