...
Configure the Oracle Database
...
The following steps will need to be followed:
Step 1: After installation, Set Collation and DB Parameters:
Default collation is Binary for Oracle and the one that is supported. The following query can be used to validate the collation for the user(database)
...
Code Block |
---|
|
SELECT * FROM v$nls_parameters WHERE parameter LIKE '%CHARACTERSET%'; |
...
Step 2: Setup your database charset:
- shutdown immediate;
- startup restrict;
- select name from v$database;
view code below:
Code Block |
---|
|
ALTER DATABASE CHARACTER SET INTERNAL_USE AL32UTF8; |
view code below:
Code Block |
---|
|
SELECT value FROM NLS_DATABASE_PARAMETERS WHERE parameter=’NLS_CHARACTERSET’; |
- shutdown immediate;
- startup;
Step 3: Connect in SQL Developer:
Run Below Command for User creation:
...
Code Block |
---|
|
SELECT * FROM DBA_DATA_FILES;
ALTER DATABASE DATAFILE '<example>/u01/app/oracle/oradata/XE/system.dbf<example>' AUTOEXTEND ON MAXSIZE UNLIMITED; |
Back to Top ^