Skip to content

Commit e919b47

Browse files
committed
Show how to find the NCHAR character set
1 parent 787524f commit e919b47

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

doc/api.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12669,6 +12669,15 @@ FROM nls_database_parameters
1266912669
WHERE parameter = 'NLS_CHARACTERSET'
1267012670
```
1267112671

12672+
To find the database 'national character set' used for NCHAR and related types,
12673+
execute the query:
12674+
12675+
```sql
12676+
SELECT value AS db_ncharset
12677+
FROM nls_database_parameters
12678+
WHERE parameter = 'NLS_NCHAR_CHARACTERSET'
12679+
```
12680+
1267212681
The general Oracle statement to find the 'client' character set is:
1267312682

1267412683
```sql

0 commit comments

Comments
 (0)