How to check the character set of an Oracle database?
You can check the character set of an Oracle database by following these steps:
- Log in to the Oracle database server.
- Open SQL*Plus or SQL development tool.
- Execute the following SQL statement:
SELECT * FROM nls_database_parameters WHERE parameter = 'NLS_CHARACTERSET';
This will return the character set information of the database.
Alternatively, you can execute the following SQL statement to view all supported character sets:
SELECT * FROM v$nls_valid_values WHERE parameter = 'CHARACTERSET';
This will return a list of all supported character sets.