11.2.0.4 : nls_database_parameters
Hi,
We created a empty database with NLS_LENGTH_SEMANTICS = BYTE. Due to a requirement , we need to change the value to CHAR. I executed
alter system set NLS_LENGTH_SEMANTICS = CHAR scope = both; and after that database has been bounced.
However, after bounce I can see the following
- select * from nls_database_parameters order by parameter; ß results in NLS_LENGTH_SEMANTICS = BYTE
- select * from nls_instance_parameters order by parameter; ß results in NLS_LENGTH_SEMANTICS = CHAR
- select * from nls_session_parameters order by parameter; ß results in NLS_LENGTH_SEMANTICS = CHAR
How do I reflect this change in nls_database_parameters?