Recommendations for Oracle Database

The following settings are recommended for Oracle database:

Notes:

Character Set Recommendations

For Unicode national language support, the NLS_CHARACTERSET should be set to AL32UTF8 while creating the database. Review this with your database administrator before adapting and implementing it to your environment.

Check the character set by using the following syntax:

SQL> select name, value$ from sys.props$ where name = 'NLS_CHARACTERSET';

This should return AL32UTF8.

Byte Length Semantics

Check for byte length semantics using the following syntax:

SQL> select name, value$ from sys.props$ where name = 'NLS_LENGTH_SEMANTICS';

This should return BYTE.



Legal Notices
Copyright © 2000, 2016, Oracle and/or its affiliates. All rights reserved.

Last Published Thursday, June 23, 2016