Globalization Support Information in the Data Dictionary

You can obtain information about the settings for NLS database parameters and character sets from the data dictionary using V$NLS_ parameter views. These views are available regardless of the NLS settings of your database; however, they are only truly relevant and useful under the multilingual conditions.

V$NLS_PARAMETERS

To view the database and national character set information, you could easily run the following query:

SELECT parameter, value
FROM nls_database_parameters
WHERE parameter like '%CHARACTERS%';

You would have returned the NLS_CHARACTERSET and the NLS_NCHAR_CHARACTERSET and the values for each of those parameters.

V$NLS_PARAMETERS provides the current values that are set ...

Get Oracle 9i Fundamentals I Exam Cram™ 2 (Exam 1Z0-031) now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.