Simple Topic just to people who asked before why NLS_CHARACTER SET Not appearing in my V$PARAMETER View :
Just Use two Below Query Depend on your version
SQL> select value from nls_database_parameters where
parameter = 'NLS_CHARACTERSET' ;
VALUE
----------------------------------------
AR8MSWIN1256
Check the National Character set :
SQL> select value from nls_database_parameters where
parameter = 'NLS_NCHAR_CHARACTERSET' ;
Or you can Use :
SELECT value$ FROM sys.props$ WHERE name = ‘NLS_CHARACTERSET’ ;
Thank you
Osama Mustafa
Like this:
Like Loading...
Related
Published by Osama Mustafa
Osama considered as one of the leaders in Cloud technology, DevOps and database in the Middle-East. I have more than ten years of experience within the industry. moreover, certfied 4x AWS , 4x Azure and 6x OCI, have also obtained database certifications for multiple providers.
In addition to having experience with Oracle database and Oracle products, such as middle-ware, OID, OAM and OIM, I have gained substantial knowledge with different databases.
Currently, I am architecting and implementing Cloud and DevOps. On top of that, I'm providing solutions for companies that allow them to implement the solutions and to follow the best practices.
View all posts by Osama Mustafa