Questions :
Windows7 Chinese environment, Plsql Developer error message box text is garbled
resolution process :
1. Use select * from V$nls_parameters; the query learns that the character set encoding of the server is:
Nls_language=simplified Chinese
Nls_characterset=al32utf8
2. Because the server is not on its own local, but through the client remote connection, so there is no Oracle related registry entries in the registry, unable to modify the registry information to solve the problem;
3. Modify the environment variables, and in the computer-right-click Properties-Advanced system settings-environment variables, create a new user variable of "nls_lang=simplified Chinese_china." Al32utf8 "(Consistent with the server's character set encoding), all determined, restart Plsql developer after retry, the problem persists;
4. Modify the third item's environment variable value to "Nls_lang=simplified Chinese_china." ZHS16GBK ", restart Plsql developer after retrying, error message box text for Chinese characters, problem solved.
Conclusion :
The character set encoding on the client and remote server side can not be consistent, and you can modify the character set encoding in your environment variables until it is no longer garbled.
Resolved: Plsql Developer error message Bullet box text garbled problem