An application I'm using with Oracle seems to be having issues with characters, and I ran the queries below to check on the CHARACTERSET.
SELECT * FROM nls_session_parameters WHERE PARAMETER='NLS_CHARACTERSET';
SELECT * FROM nls_database_parameters WHERE PARAMETER='NLS_CHARACTERSET';
The second query from nls_database_parameters returns AL32UTF8.
But the first query seems to return None.
I've read that the nls_session_parameters takes precedence over the nls_database_parameters, but in this case, where there does not seem to be any value set for it, would it fall back to the nls_database_parameters, or is there something that needs to be configured to set the nls_session_parameters.
Thank you for any input on this.