今天在客户服务器上遇到了oracle中文乱码问题,第一个想到的是:要想避免oracle字符乱码的问题,需要注意oracle客户端的字符编码和服务端的字符编码保持一致. 于是操作如下: 1.查看服务端字符集--结果:服务端是ZHS16GBKSELECT * FROM NLS_DATABASE_PARAMETERS where parameter='NLS_CHARACTERSET'; 2.于是开始修改客户端字符集,方式如下: 在运行里面,输入regedit进入注册表,HKEY_LOCAL_MACH…
PLSQL乱码&TNS-12557: protocol adapter not loadable解决 PLSQL乱码&TNS-12557: protocol adapter not loadable解决 1.乱码是字符集问题. set NLS_LANG=SIMPLIFIED CHINESE_CHINA.ZHS16GBK 或者 set NLS_LANG=AMERICAN_AMERICA.UTF8 可以解决. 2.我遇到链接时报TNS-12557: protocol adapter not l…
参考: http://blog.csdn.net/haiross/article/details/20612135 Oracle/PLSQL: ORA-06550 Learn the cause and how to resolve the ORA-06550 error message in Oracle. Description When you encounter an ORA-06550 error, the following error message will appear: OR…