Oracle database is not configured to
use the AL32UTF8 character set
Many of the Oracle Fusion Middleware components require the existence of schemas in a database prior to installation. These schemas are created and loaded in your database using the Repository Creation Utility (RCU).
The selected Oracle database is not configured to use the AL32UTF8 character set
2. One by one, execute the next statements.
shutdown immediate;
startup restrict;
alter database character set internal_use AL32UTF8;
alter database character set AL32UTF8;
shutdown immediate;
startup;
3. Exit SQL Plus
In order to change the character set in the database, follow the next steps.
1. Open SQLplus and login using a sysdba role2. One by one, execute the next statements.
shutdown immediate;
startup restrict;
alter database character set internal_use AL32UTF8;
alter database character set AL32UTF8;
shutdown immediate;
startup;
3. Exit SQL Plus
Post a Comment