Show how to find the NCHAR character set

This commit is contained in:
Christopher Jones 2019-11-05 11:13:25 +11:00
parent 787524fee5
commit e919b47051
1 changed files with 9 additions and 0 deletions

View File

@ -12669,6 +12669,15 @@ FROM nls_database_parameters
WHERE parameter = 'NLS_CHARACTERSET'
```
To find the database 'national character set' used for NCHAR and related types,
execute the query:
```sql
SELECT value AS db_ncharset
FROM nls_database_parameters
WHERE parameter = 'NLS_NCHAR_CHARACTERSET'
```
The general Oracle statement to find the 'client' character set is:
```sql