We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 787524f commit e919b47Copy full SHA for e919b47
doc/api.md
@@ -12669,6 +12669,15 @@ FROM nls_database_parameters
12669
WHERE parameter = 'NLS_CHARACTERSET'
12670
```
12671
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
12681
The general Oracle statement to find the 'client' character set is:
12682
12683
```sql
0 commit comments